Skip to main content
POST
/
v1
/
voiceai
/
agents
Create Agent
curl --request POST \
  --url https://api.example.com/v1/voiceai/agents \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "agent_type": "blank",
  "goal": "<string>",
  "website_url": "<string>",
  "category": "<string>",
  "subcategory": "<string>"
}
'
{
  "agent_id": "<string>"
}

Headers

x-api-key
string | null

API key for authentication

Body

application/json
name
string
required
Required string length: 1 - 100
agent_type
string | null
default:blank
goal
string | null
Maximum string length: 500
website_url
string | null
Maximum string length: 255
category
string | null
Maximum string length: 100
subcategory
string | null
Maximum string length: 100

Response

Successful Response

agent_id
string
required