Skip to main content

Get started in three steps

Go from idea to live calls in minutes.

Step 1: Connect Account

  1. Visit https://platform.unleashx.ai and sign in.
  2. Navigate to Developers → API Keys.
  3. Generate an API key and store it securely.
API base URL: https://api.tryunleashx.com/v1/

Step 2: Configure Agent

  • Choose a template or start from scratch
  • Set language, voice, and guardrails
  • Connect providers (ASR, LLM, TTS) if needed
curl -X POST 'https://api.tryunleashx.com/v1/agent' \
  -H 'Authorization: Bearer <api_key>' \
  -H 'Content-Type: application/json' \
  -d '{
    "name": "Sales Assistant",
    "language": "en"
  }'

Step 3: Click to Call

curl -X POST 'https://api.tryunleashx.com/v1/call' \
  -H 'Authorization: Bearer <api_key>' \
  -H 'Content-Type: application/json' \
  -d '{
    "agent_id": "<uuid>",
    "recipient_phone_number": "+10123456789",
    "from_phone_number": "+19876543007",
    "user_data": { "order_id": "12345" }
  }'
curl -X GET 'https://api.tryunleashx.com/v1/call/all?limit=50' \
  -H 'Authorization: Bearer <api_key>'

Next steps