cURL
curl -H "X-API-Key: $PARTICLE_API_KEY" \
"https://api.particle.pro/v1/podcasts/{id}/advertising"{
"avg_ads_per_episode": 123,
"episodes_with_ads": 123,
"podcast_id": "<string>",
"read_type_breakdown": {
"host_read": 123,
"pre_recorded": 123
},
"top_sponsors": [
{
"ad_count": 123,
"episode_count": 123,
"sponsor_name": "<string>",
"company_id": "<string>",
"slug": "<string>"
}
],
"total_ads": 123,
"unique_sponsors": 123,
"podcast_slug": "<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"
}Podcasts
Get podcast advertising profile
Returns advertising intelligence for a specific podcast, including aggregate stats, read type breakdown, and top sponsors. Identify the podcast by slug (e.g., ‘all-in’) or ID.
GET
/
v1
/
podcasts
/
{id}
/
advertising
cURL
curl -H "X-API-Key: $PARTICLE_API_KEY" \
"https://api.particle.pro/v1/podcasts/{id}/advertising"{
"avg_ads_per_episode": 123,
"episodes_with_ads": 123,
"podcast_id": "<string>",
"read_type_breakdown": {
"host_read": 123,
"pre_recorded": 123
},
"top_sponsors": [
{
"ad_count": 123,
"episode_count": 123,
"sponsor_name": "<string>",
"company_id": "<string>",
"slug": "<string>"
}
],
"total_ads": 123,
"unique_sponsors": 123,
"podcast_slug": "<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., 'all-in'), internal ID, or numeric iTunes ID
Response
OK
Average ads per episode
Number of episodes containing ads
Podcast identifier
Distribution of ad read types
Show child attributes
Show child attributes
Most frequent sponsors
Show child attributes
Show child attributes
Total number of ads detected
Number of distinct sponsors
Human-readable slug (when available)
Was this page helpful?