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

# Create Web Call (Public Shared)

> Create a web call session using a public shared link.

This endpoint enables creating web calls without user authentication, using a shared key instead.
Ideal for public-facing applications where users don't need accounts to interact with AI agents.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/calls/public/create-web-call
openapi: 3.1.0
info:
  title: Verbex Platform API
  description: API for managing AI agents, calls, phone numbers, and more.
  version: 1.0.0
servers: []
security: []
paths:
  /v1/calls/public/create-web-call:
    get:
      tags:
        - Calls
      summary: Create Web Call (Public Shared)
      description: >-
        Create a web call session using a public shared link.


        This endpoint enables creating web calls without user authentication,
        using a shared key instead.

        Ideal for public-facing applications where users don't need accounts to
        interact with AI agents.
      operationId: create_web_call_public_shared_v1_calls_public_create_web_call_get
      parameters:
        - name: ai_agent_id
          in: query
          required: true
          schema:
            type: string
            description: AI Agent ID
            title: Ai Agent Id
          description: AI Agent ID
        - name: shared_key
          in: query
          required: true
          schema:
            type: string
            description: Shared key for authentication
            title: Shared Key
          description: Shared key for authentication
      responses:
        '201':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublicShareWebCallResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/app__calls__schemas__ErrorResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    PublicShareWebCallResponse:
      properties:
        access_token:
          type: string
          title: Access Token
          description: Security token for accessing the publicly shared web call
      type: object
      required:
        - access_token
      title: PublicShareWebCallResponse
    app__calls__schemas__ErrorResponse:
      properties:
        error:
          type: string
          title: Error
          description: Error code identifying the type of error that occurred
        message:
          type: string
          title: Message
          description: Human-readable description of the error
      type: object
      required:
        - error
        - message
      title: ErrorResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````