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

# List the talking-actor avatars available to the team (stock library plus the team's custom avatars): id, name, portrait, gender, age range, style, and default voice.

> List the talking-actor avatars available to the team (stock library plus the team's custom avatars): id, name, portrait, gender, age range, style, and default voice.



## OpenAPI

````yaml /openapi.json post /tools/list_avatars
openapi: 3.1.0
info:
  title: AdStellar API
  version: 1.0.0
  description: >-
    Public REST API for AdStellar — creative generation, video generation,
    campaign management, and analytics. Every endpoint maps 1:1 to an AdStellar
    MCP tool.
servers:
  - url: https://app.adstellar.ai/api/v1
security: []
paths:
  /tools/list_avatars:
    post:
      summary: >-
        List the talking-actor avatars available to the team (stock library plus
        the team's custom avatars): id, name, portrait, gender, age range,
        style, and default voice.
      description: >-
        List the talking-actor avatars available to the team (stock library plus
        the team's custom avatars): id, name, portrait, gender, age range,
        style, and default voice.
      operationId: list_avatars
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $schema: https://json-schema.org/draft/2020-12/schema
              type: object
              properties:
                includeCustom:
                  description: Include the team's custom avatars (default true).
                  type: boolean
                limit:
                  description: Max avatars to return (default 100).
                  type: integer
                  minimum: 1
                  maximum: 200
              additionalProperties: false
      responses:
        '200':
          description: Tool result
        '401':
          description: Missing or invalid API key
        '403':
          description: Missing required scope
        '429':
          description: Rate limit exceeded
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: AdStellar API key (ast_live_...)

````