cURL
curl -H "X-API-Key: $PARTICLE_API_KEY" \
"https://api.particle.pro/v1/podcasts/{id}/rankings"{
"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"
}Podcast Rankings
List current rankings for a podcast
Returns every live chart appearance of the given podcast — across sources, countries, and categories. Identify the podcast by slug (e.g., ‘the-daily’) or ID.
GET
/
v1
/
podcasts
/
{id}
/
rankings
cURL
curl -H "X-API-Key: $PARTICLE_API_KEY" \
"https://api.particle.pro/v1/podcasts/{id}/rankings"{
"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
ApiKeyHeaderBearerAuth
Pass your API key in the X-API-Key header (recommended).
Path Parameters
Podcast slug (e.g. 'the-daily', 'lex-fridman-podcast'), internal ID, or numeric iTunes ID.
Query Parameters
Results per page (default: all)
Required range:
1 <= x <= 100Opaque pagination cursor from previous response
Was this page helpful?