Skip to main content
GET
/
v1
/
creatives
/
{creative_id}
/
transcript
Get creative transcript
curl --request GET \
  --url https://api.adspo.co/v1/creatives/{creative_id}/transcript \
  --header 'x-api-key: <api-key>'
{
  "creative_id": "59d368077af38827ea986c60477a3259",
  "transcript": "If you've heard of ozempic face, here's what that really means.",
  "timestamps": [
    {
      "start": 0,
      "end": 2.62,
      "duration": 2.62,
      "text": "If you've heard of ozempic face, here's what that really means."
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.adspo.co/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

Your Adspo API key.

Path Parameters

creative_id
string
required

The creative ID.

Response

Transcript data for the creative.

creative_id
string
transcript
string | null

Full spoken transcript as a single string. null if unavailable.

timestamps
object[] | null

Transcript broken into timed segments. null if unavailable.