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

# List available models and product options



## OpenAPI

````yaml /api/openapi.yaml get /v1/models
openapi: 3.1.0
info:
  title: AdSkull Public API
  version: 1.0.0
  summary: Public API for AdSkull creative generation.
  description: >
    Create AI ad assets, images, videos, voiceovers, custom voices, and talking
    avatars.

    Responses expose AdSkull product resources.
servers:
  - url: https://api.adskull.io
security:
  - bearerAuth: []
tags:
  - name: Account
  - name: Models
  - name: Assets
  - name: Images
  - name: Videos
  - name: Voices
  - name: Talking Avatars
  - name: Webhooks
  - name: LLM
  - name: LLM OpenAI Compat
  - name: LLM Anthropic Compat
paths:
  /v1/models:
    get:
      tags:
        - Models
      summary: List available models and product options
      operationId: listModels
      parameters:
        - in: query
          name: type
          schema:
            type: string
            enum:
              - image
              - video
              - voice
              - talking_avatar
      responses:
        '200':
          description: Model catalog.
          content:
            application/json:
              schema:
                type: object
                required:
                  - object
                  - data
                properties:
                  object:
                    type: string
                    const: list
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/ModelCatalogItem'
        '401':
          $ref: '#/components/responses/Unauthorized'
      security:
        - bearerAuth:
            - usage:read
components:
  schemas:
    ModelCatalogItem:
      type: object
      required:
        - id
        - object
        - type
        - name
      properties:
        id:
          type: string
        object:
          type: string
          const: model
        type:
          type: string
          enum:
            - image
            - video
            - voice
            - talking_avatar
        name:
          type: string
        description:
          type: string
        options:
          type: object
          additionalProperties: true
    ErrorEnvelope:
      type: object
      required:
        - error
      properties:
        error:
          type: object
          required:
            - code
            - message
            - request_id
          properties:
            code:
              type: string
            message:
              type: string
            request_id:
              type: string
            details:
              type: object
              additionalProperties: true
  responses:
    Unauthorized:
      description: Missing or invalid API key.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorEnvelope'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API key

````