cURL
curl -H "X-API-Key: $PARTICLE_API_KEY" \
"https://api.particle.pro/v1/podcasts/{id}/rankings/history?limit=25"{
"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
Get historical rankings for a podcast
Returns the historical rank entries for a podcast across one or more chart slots. Optional filters narrow the scope (single source, single country, single category, or a date range).
GET
/
v1
/
podcasts
/
{id}
/
rankings
/
history
cURL
curl -H "X-API-Key: $PARTICLE_API_KEY" \
"https://api.particle.pro/v1/podcasts/{id}/rankings/history?limit=25"{
"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, internal ID, or numeric iTunes ID.
Query Parameters
Results per page
Required range:
1 <= x <= 100Opaque pagination cursor from previous response
Restrict to one source.
Available options:
apple, spotify Restrict to one chart type.
Available options:
top_podcasts Restrict to one country (ISO 3166-1 alpha-2; case-insensitive on input).
Required string length:
2Restrict to one category slug. Omit to include every category.
Lower bound on captured_at (ISO 8601).
Example:
"2025-01-01T00:00:00Z"
Upper bound on captured_at (ISO 8601).
Example:
"2026-01-01T00:00:00Z"
Was this page helpful?