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

# Getting started

> Connect account, configure an agent, and make your first call with UnleashX

## Get started in three steps

Go from idea to live calls in minutes.

### Step 1: Connect Account

<AccordionGroup>
  <Accordion icon="user" title="Sign in to the Dashboard">
    1. Visit `https://www.tryunleashx.com/` and sign in.
    2. Navigate to Developers → API Keys.
    3. Generate an API key and store it securely.
  </Accordion>

  <Accordion icon="key" title="Set your server URL">
    API base URL: `https://www.tryunleashx.com/`
  </Accordion>
</AccordionGroup>

### Step 2: Configure Agent

<AccordionGroup>
  <Accordion icon="gears" title="Create your first agent">
    * Choose a template or start from scratch
    * Set language, voice, and guardrails
    * Connect providers (ASR, LLM, TTS) if needed
  </Accordion>

  <Accordion icon="square-code" title="Create via API (optional)">
    ```bash theme={null}
    curl -X POST 'https://www.tryunleashx.com/agent' \
      -H 'Authorization: Bearer <api_key>' \
      -H 'Content-Type: application/json' \
      -d '{
        "name": "Sales Assistant",
        "language": "en"
      }'
    ```
  </Accordion>
</AccordionGroup>

### Step 3: Click to Call

<AccordionGroup>
  <Accordion icon="phone" title="Make your first call">
    ```bash theme={null}
    curl -X POST 'https://www.tryunleashx.com/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" }
      }'
    ```
  </Accordion>

  <Accordion icon="chart-line" title="View executions & calls">
    ```bash theme={null}
    curl -X GET 'https://www.tryunleashx.com/call/all?limit=50' \
      -H 'Authorization: Bearer <api_key>'
    ```
  </Accordion>
</AccordionGroup>

## Next steps

<Columns cols={2}>
  <Card title="Phone calls" icon="phone" href="/phone-calls/supported-telephony">
    Set up telephony, purchase numbers, and receive calls.
  </Card>

  <Card title="Interactive API" icon="terminal" href="/api-reference/introduction">
    Explore and try APIs in the interactive playground.
  </Card>

  <Card title="Features" icon="puzzle-piece" href="/features/connect-providers">
    Configure providers, knowledgebases, variables, and guardrails.
  </Card>

  <Card title="Pricing" icon="tag" href="/pricing/call-pricing">
    Review pricing and concurrency options.
  </Card>
</Columns>
