Developer API

Bring broadcast intelligence into your product.

The Voice Intel API exposes authenticated resources for sources, captures, transcripts, search, analytics, and reports. This public page is an overview; the complete API documentation remains available to authorized users.

Sources & captures

List radio and TV sources, schedules, recordings, and live sessions.

Search & intelligence

Query transcripts, entities, tracked terms, and analyzed broadcast events.

Authenticated access

Use a bearer access token and keep credentials on your server.

A typical request

Requests and responses use JSON. Paginated resources include an authoritativetotalalongside the current page of items.

Use the API base URL supplied for your environment. The hostname below is illustrative.

const response = await fetch(
  "https://api.example.com/api/v1/stations/?page=1&limit=20",
  {
    headers: {
      Authorization: `Bearer ${accessToken}`,
      "Content-Type": "application/json",
    },
  },
)

if (!response.ok) throw new Error("Unable to load stations")

const { items, total } = await response.json()

Ready to work with your data?

Sign in to access the restricted API documentation for your account.

Log in for API docs