IDs and slugs
Most endpoints with an{id} path parameter accept either:
- The canonical opaque ID (e.g.
17PzxG1t12xznofor Sam Altman,3CensCwu5G2oKCFgPrNf89for Nvidia), or - A human-readable slug (e.g.
sam-altman,nvidia,pivot,the-joe-rogan-experience).
entity_slug: "nvidia"), you can pass it directly to any other endpoint without first looking up the canonical ID.
/v1/companies/{id} resolves slug, domain, and canonical ID directly. To look up by ticker, CIK, or QID, use the corresponding query filter on GET /v1/companies (?ticker=…, ?cik=…, ?qid=…) and pass the returned slug, domain, or ID through the singular endpoint. See Companies → Identifiers.
Cursor pagination
List endpoints share a single response envelope:cursor value back as a query parameter:
limit to override (typically up to 100).
Authentication
Two header forms are accepted;X-API-Key is recommended.
/v1/embed/*) intentionally do not require authentication so the responses can be used as public iframe payloads.
Pricing weight
Every endpoint is available on every account — there is no tier lock. Endpoints are priced differently, though: heavier endpoints (full transcripts, transcript mentions, advertising analytics, cross-podcast clip search, competitor lookups, entity appearances) consume more credits per call than lighter ones (entity, topic, and podcast metadata; episode lookups and sub-resources; clip listings; embed). The OpenAPI tag on every operation declares the pricing class —tier:standard or tier:premium. Treat it as a hint about cost, not a hint about access. Your usage dashboard breaks down spend by endpoint so you can see where credits are going.
Choosing the right endpoint
The API exposes overlapping ways to find content. Pick by what you actually need.| You want… | Use | Notes |
|---|---|---|
| All episodes mentioning an entity | GET /v1/entities/{id}/appearances | Cross-podcast, episode-level metadata. |
| Episode-level filtering by entity, topic, language, or date | GET /v1/podcasts/episodes?entity_id=… | Standard list, supports rich filters. |
| The actual dialogue around mentions in one episode | GET /v1/podcasts/episodes/{id}/transcript/mentions | Returns surrounding context lines and timestamps. |
| Mentions of an entity in a specific podcast across episodes | GET /v1/podcasts/{id}/mentions | Episode-level aggregate within one podcast. |
| Engagement-scored highlight moments | GET /v1/podcasts/clips/search?entity_id=… | A handful of clips per episode; great for sharing, not corpus search. |
| AI-segmented structural sections of an episode | GET /v1/podcasts/episodes/{id}/segments | Intros, ads, topic discussions, interviews. |
| Who advertises on which podcasts | GET /v1/companies/{id}/podcast/advertising and /v1/podcasts/advertising/leaderboard | Sponsor-side analytics. |
Errors
Errors follow RFC 9457 (Problem Details for HTTP APIs). Every error response isapplication/problem+json with at minimum status, title, and detail, plus a stable error_code for programmatic branching and an optional resolve object pointing at how to fix the issue.
See Errors → Overview for the full envelope, the catalog of error codes, and patterns for handling them in UI clients and agents.
Rate limits
Rate-limited responses return HTTP 429 witherror_code: "rate_limit_exceeded". Back off and retry — the response includes guidance in detail. See rate_limit_exceeded.