Skip to main content
GET
/
v1
/
podcasts
/
advertising
/
co-occurrence
cURL
curl -H "X-API-Key: $PARTICLE_API_KEY" \
  "https://api.particle.pro/v1/podcasts/advertising/co-occurrence?limit=25"
{
  "data": [
    {
      "shared_episodes": 123,
      "sponsor_a": {
        "id": "<string>",
        "name": "<string>",
        "company": {
          "id": "<string>",
          "name": "<string>",
          "image_url": "<string>"
        }
      },
      "sponsor_b": {
        "id": "<string>",
        "name": "<string>",
        "company": {
          "id": "<string>",
          "name": "<string>",
          "image_url": "<string>"
        }
      }
    }
  ],
  "has_more": true,
  "cursor": "<string>"
}

Authorizations

X-API-Key
string
header
required

Pass your API key in the X-API-Key header (recommended).

Query Parameters

limit
integer<int64>
default:25

Results per page

Required range: 1 <= x <= 100
cursor
string

Opaque pagination cursor from previous response

sponsor_id
string

Filter to pairs involving this sponsor ID

company_id
string

Filter by company ID, domain, or entity slug

Response

OK

data
object[] | null
required

List of results

has_more
boolean
required

Whether more results exist

cursor
string

Pass to next request for more results