> ## 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.

# Get creative transcript

> Returns the full transcript for a video creative, including the raw text and timestamped segments. Returns 404 if the creative does not exist.



## OpenAPI

````yaml GET /v1/creatives/{creative_id}/transcript
openapi: 3.1.0
info:
  title: Adspo API
  version: 1.0.0
  description: >
    The Adspo API gives you programmatic access to ad creative data across
    brands.


    ## Authentication


    All endpoints require an API key passed in the `x-api-key` header.


    ```

    x-api-key: YOUR_API_KEY

    ```


    ## Rate limits


    - **120 requests per minute** per key. Exceeding this returns `429`.

    - **Credits per billing period** vary by plan. Each request costs 1 credit.
    Exceeding your quota returns `429` with `resets_at` indicating when it
    resets
servers:
  - url: https://api.adspo.co
    description: Production
security:
  - apiKey: []
paths:
  /v1/creatives/{creative_id}/transcript:
    get:
      summary: Get creative transcript
      description: >-
        Returns the full transcript for a video creative, including the raw text
        and timestamped segments. Returns 404 if the creative does not exist.
      operationId: getCreativeTranscript
      parameters:
        - name: creative_id
          in: path
          required: true
          description: The creative ID.
          schema:
            type: string
      responses:
        '200':
          description: Transcript data for the creative.
          content:
            application/json:
              schema:
                type: object
                properties:
                  creative_id:
                    type: string
                  transcript:
                    type: string
                    nullable: true
                    description: >-
                      Full spoken transcript as a single string. null if
                      unavailable.
                  timestamps:
                    type: array
                    nullable: true
                    description: >-
                      Transcript broken into timed segments. null if
                      unavailable.
                    items:
                      type: object
                      properties:
                        start:
                          type: number
                          description: Segment start time in seconds.
                        end:
                          type: number
                          description: Segment end time in seconds.
                        duration:
                          type: number
                          description: Segment duration in seconds.
                        text:
                          type: string
                          description: Spoken text for this segment.
              example:
                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.
        '401':
          description: Missing or invalid API key.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Creative not found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '429':
          description: Rate limit or quota exceeded.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '500':
          description: Internal server error.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      type: object
      properties:
        error:
          type: string
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: Your Adspo API key.

````