Skip to main content
POST
/
v1
/
calls
/
web
Create web call
curl --request POST \
  --url http://13.207.23.185:8000/v1/calls/web \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "agent_id": "<string>",
  "variables": {
    "customer_name": "Suman"
  },
  "overrides": {
    "llm": {
      "provider": "<string>",
      "model": "<string>"
    },
    "transcriber": {
      "provider": "<string>",
      "model": "<string>",
      "language": "<string>"
    },
    "tts": {
      "provider": "<string>",
      "voice_id": "<string>",
      "model": "<string>"
    },
    "first_message": "<string>"
  }
}
'
{
  "id": "<string>",
  "server_url": "wss://your-livekit-server.livekit.cloud",
  "participant_token": "eyJhbGciOiJIUzI1NiJ9..."
}

Documentation Index

Fetch the complete documentation index at: https://docs.oneinbox.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Use api_key from POST /v1/api-keys

Body

application/json
agent_id
string
required
variables
object
Example:
{ "customer_name": "Suman" }
overrides
object

Response

201 - application/json

Created

id
string
server_url
string
Example:

"wss://your-livekit-server.livekit.cloud"

participant_token
string
Example:

"eyJhbGciOiJIUzI1NiJ9..."