> ## Documentation Index
> Fetch the complete documentation index at: https://captions.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# List



## OpenAPI

````yaml openapi-ads.yaml post /ads/list-creators
openapi: 3.0.0
info:
  title: AI Ads API
  description: API for AI-powered ad video generation.
  version: 1.0.0
servers:
  - url: https://api.captions.ai/api
security: []
paths:
  /ads/list-creators:
    post:
      summary: List available AI Ad Creators
      description: >-
        Retrieves a list of AI creators that can be used for ad video
        generation.
      operationId: listAdCreators
      responses:
        '200':
          description: Successful response containing available AI ad creators.
          content:
            application/json:
              schema:
                type: object
                properties:
                  supportedCreators:
                    type: array
                    items:
                      type: string
                  thumbnails:
                    type: object
                    additionalProperties:
                      type: object
                      properties:
                        imageUrl:
                          type: string
                        videoUrl:
                          type: string
        '401':
          description: Unauthorized API key.
          content:
            application/json:
              schema:
                type: object
                properties:
                  detail:
                    type: string
      security:
        - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````