curl -H "X-API-Key: $PARTICLE_API_KEY" \
"https://api.particle.pro/v1/podcasts/rankings?limit=25&source=apple&chart_type=top_podcasts&country=us"{
"data": [
{
"captured_at": "2023-11-07T05:31:56Z",
"chart_type": "top_podcasts",
"external_id": "<string>",
"id": "<string>",
"is_current": true,
"rank": 123,
"show": {
"name": "<string>",
"content_advisory_rating": "<string>",
"description": "<string>",
"feed_url": "<string>",
"genres": [
{
"external_id": "<string>",
"name": "<string>"
}
],
"image_url": "<string>",
"language": "<string>",
"latest_release_date": "2023-11-07T05:31:56Z",
"publisher": "<string>",
"total_episodes": 123
},
"source": "apple",
"category": {
"name": "<string>",
"slug": "<string>",
"external_id": "<string>",
"parent_slug": "<string>"
},
"channel_subscriber_count": 123,
"chart_total": 123,
"country": "<string>",
"external_url": "<string>",
"growth_indicator": "<string>",
"podcast": {
"id": "<string>",
"title": "<string>",
"best_rank": {
"captured_at": "2023-11-07T05:31:56Z",
"chart_type": "top_podcasts",
"rank": 123,
"source": "apple",
"category_slug": "<string>",
"country": "<string>"
},
"image_url": "<string>",
"popularity": 123,
"publisher": {
"id": "<string>",
"name": "<string>",
"slug": "<string>"
},
"slug": "<string>"
},
"previous_rank": 123,
"reach_pct": 123,
"source_updated_at": "2023-11-07T05:31:56Z",
"view_count": 123,
"weekly_avg_downloads": 123
}
],
"has_more": true,
"cursor": "<string>"
}{
"detail": "Property foo is required but is missing.",
"error_code": "<string>",
"errors": [
{
"location": "<string>",
"message": "<string>",
"value": "<unknown>"
}
],
"instance": "https://example.com/error-log/abc123",
"resolve": {
"message": "<string>",
"action": "<string>",
"endpoint": "<string>",
"method": "<string>",
"url": "<string>"
},
"status": 400,
"title": "Bad Request",
"type": "https://example.com/errors/example"
}List podcast rankings
Returns chart entries from the live ranking snapshot. The most common call needs no parameters — it returns the first page (default 25, max 100 per request) of the US Apple Top Podcasts overall chart, ordered by rank ascending. Charts run to rank 200; paginate with cursor to fetch the rest. Narrow the result with country, category_slug, source, or podcast_id. When podcast_id is set, the response is the podcast’s current chart appearances across the matching slots.
curl -H "X-API-Key: $PARTICLE_API_KEY" \
"https://api.particle.pro/v1/podcasts/rankings?limit=25&source=apple&chart_type=top_podcasts&country=us"{
"data": [
{
"captured_at": "2023-11-07T05:31:56Z",
"chart_type": "top_podcasts",
"external_id": "<string>",
"id": "<string>",
"is_current": true,
"rank": 123,
"show": {
"name": "<string>",
"content_advisory_rating": "<string>",
"description": "<string>",
"feed_url": "<string>",
"genres": [
{
"external_id": "<string>",
"name": "<string>"
}
],
"image_url": "<string>",
"language": "<string>",
"latest_release_date": "2023-11-07T05:31:56Z",
"publisher": "<string>",
"total_episodes": 123
},
"source": "apple",
"category": {
"name": "<string>",
"slug": "<string>",
"external_id": "<string>",
"parent_slug": "<string>"
},
"channel_subscriber_count": 123,
"chart_total": 123,
"country": "<string>",
"external_url": "<string>",
"growth_indicator": "<string>",
"podcast": {
"id": "<string>",
"title": "<string>",
"best_rank": {
"captured_at": "2023-11-07T05:31:56Z",
"chart_type": "top_podcasts",
"rank": 123,
"source": "apple",
"category_slug": "<string>",
"country": "<string>"
},
"image_url": "<string>",
"popularity": 123,
"publisher": {
"id": "<string>",
"name": "<string>",
"slug": "<string>"
},
"slug": "<string>"
},
"previous_rank": 123,
"reach_pct": 123,
"source_updated_at": "2023-11-07T05:31:56Z",
"view_count": 123,
"weekly_avg_downloads": 123
}
],
"has_more": true,
"cursor": "<string>"
}{
"detail": "Property foo is required but is missing.",
"error_code": "<string>",
"errors": [
{
"location": "<string>",
"message": "<string>",
"value": "<unknown>"
}
],
"instance": "https://example.com/error-log/abc123",
"resolve": {
"message": "<string>",
"action": "<string>",
"endpoint": "<string>",
"method": "<string>",
"url": "<string>"
},
"status": 400,
"title": "Bad Request",
"type": "https://example.com/errors/example"
}Authorizations
Pass your API key in the X-API-Key header (recommended).
Query Parameters
Results per page
1 <= x <= 100Opaque pagination cursor from previous response
Ranking source platform. Use GET /v1/podcasts/rankings/sources to enumerate available sources.
apple, spotify Chart variant within the source. Currently only 'top_podcasts' is supported.
top_podcasts ISO 3166-1 alpha-2 country code (e.g. 'us', 'gb', 'jp'). Case-insensitive on input — normalized to lowercase server-side.
2Category slug (e.g. 'comedy', 'business'). Omit for the overall chart.
Restrict to chart appearances of a single podcast (slug, internal ID, or numeric iTunes ID). When set, the chart-slot filters narrow the result; without them every current chart appearance for the podcast is returned across slots.
Minimum rank (inclusive). Useful for slicing the chart (e.g. min_rank=11&max_rank=20 for ranks 11–20).
1 <= x <= 500Maximum rank (inclusive).
1 <= x <= 500Was this page helpful?