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

# Creates a new web-based voice call session with an AI agent

> Creates a new web-based voice call session with an AI agent. Returns a call access token for the client SDK.



## OpenAPI

````yaml /api-reference/openapi.json post /api/v2/create-web-call
openapi: 3.1.0
info:
  title: Lawtte API
  version: v2
  description: >-
    REST API behind the Lawtte dashboard: AI voice and chat calls, agent
    configuration, leads, campaigns, contacts, and automation workflows.
  contact:
    name: Lawtte support
    email: contact@lawtte.ai
    url: https://www.lawtte.ai
servers:
  - url: https://www.lawtte.ai
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Voice & Chat
    description: Manage AI voice calls and chat sessions powered by Donna AI.
  - name: Agent Config
    description: Read and update AI agent prompts, voices, and configurations.
  - name: Appointments
    description: Check availability and book appointments via Cal.com integration.
  - name: Webhooks
    description: Receive real-time events after calls end.
  - name: Leads
    description: Create, manage, and analyze leads captured by your AI agents.
  - name: Campaigns
    description: Create and launch outbound call campaigns to lists of leads.
  - name: Contacts
    description: >-
      Import and sync contacts from CSV, OpenPhone, RingCentral, and practice
      management systems.
  - name: Workflows
    description: >-
      Build and manage automation workflows using a visual node-based flow
      editor.
  - name: Utilities
    description: Helper endpoints for AI-powered data extraction and widget testing.
paths:
  /api/v2/create-web-call:
    post:
      tags:
        - Voice & Chat
      summary: Creates a new web-based voice call session with an AI agent
      description: >-
        Creates a new web-based voice call session with an AI agent. Returns a
        call access token for the client SDK.
      operationId: post-create-web-call
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - agentId
              properties:
                agentId:
                  type: string
                  description: The agent ID to connect to.
                metadata:
                  type: object
                  description: >-
                    Optional caller metadata (name, phone, etc.) passed to the
                    agent.
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
              example:
                call_id: call_abc123
                access_token: eyJ...
        '401':
          description: Missing or invalid credentials
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: 'Lawtte API key or session token: `Authorization: Bearer <token>`.'

````

## Related topics

- [Creates a new text-based chat session with an AI agent](/api-reference/voice-&-chat/creates-a-new-text-based-chat-session-with-an-ai-agent.md)
- [Create your AI receptionist](/studio/create-your-receptionist.md)
- [API overview](/api-reference/introduction.md)
- [Lawtte documentation](/index.md)
- [Sends a message in an active chat session and returns the agent's reply](/api-reference/voice-&-chat/sends-a-message-in-an-active-chat-session-and-returns-the-agents-reply.md)
