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

# Create Agent



## OpenAPI

````yaml /openapi.json post /v1/agents
openapi: 3.0.3
info:
  title: Callvrse Telephony Gateway API
  description: >-
    Unified programmable voice gateway API for calls, carriers, DIDs, agent
    sessions, and routing.
  version: 1.0.0
servers:
  - url: http://127.0.0.1:8080
    description: Local development
security: []
paths:
  /v1/agents:
    post:
      tags:
        - Agents
      summary: Create Agent
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                id:
                  type: string
                  example: support-agent
                name:
                  type: string
                  example: Customer Support
                system_prompt:
                  type: string
                  example: You are a helpful customer support agent.
                greeting:
                  type: string
                  example: Hello! How can I assist you today?
                llm:
                  type: object
                tts:
                  type: object
                stt:
                  type: object
                s2s:
                  type: object
                speech_engine:
                  type: object
                  properties:
                    provider:
                      type: string
                      example: elevenlabs
                    speech_engine_id:
                      type: string
                      example: seng_...
              required:
                - id
                - name
      responses:
        '200':
          description: Agent created
      security:
        - BearerAuth: []
        - CookieAuth: []
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: Enter your Tenant API key (or use SANDBOX_API_KEY)
    CookieAuth:
      type: apiKey
      in: cookie
      name: callvrse_session
      description: HttpOnly session cookie issued on login

````