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

# Integrations

> Connect Trikon Voice to Cursor, Google AI Studio, n8n, and Zapier so your own tools can start calls and receive results.

Trikon Voice is a REST API. Any tool that can send an HTTPS request with a Bearer token can start an outbound call, create a lead, or receive a webhook when a call finishes.

This section walks through four common ways to do that.

<CardGroup cols={2}>
  <Card title="Cursor AI" icon="code" href="/integration/cursor-ai">
    Generate a working client, env setup, and webhook handler from the API docs inside Cursor.
  </Card>

  <Card title="Google AI Studio" icon="sparkles" href="/integration/ai-studio">
    Use Gemini function calling in AI Studio so a model can trigger a Trikon Voice call.
  </Card>

  <Card title="n8n" icon="diagram-project" href="/integration/n8n">
    Workflow nodes for HTTP requests and incoming webhooks — no custom server required.
  </Card>

  <Card title="Zapier" icon="bolt" href="/integration/zapier">
    Catch a form or CRM event in Zapier, then place a call or create a lead in Trikon Voice.
  </Card>
</CardGroup>

## What every integration needs

The same four values appear in every guide. Copy them once from the app.

| Value                    | Where to find it                                                                           |
| ------------------------ | ------------------------------------------------------------------------------------------ |
| **API key**              | **Settings → Developer API** (shown only after Trikon enables API access on the workspace) |
| **Workspace slug**       | **Settings** — the short name in your URL, e.g. `acmeclinic`                               |
| **Agent ID**             | Open the outbound agent; copy the UUID next to the agent name                              |
| **From (phone line ID)** | **Settings → Phone Numbers & Telephony** — the Phone Number Record UUID                    |

Pass the key as:

```text theme={null}
Authorization: Bearer YOUR_API_KEY
```

<Warning>
  Treat the API key like a password. Store it in Cursor secrets, AI Studio secrets, n8n credentials, or Zapier authentication — never in a public prompt, a shared Zap step that logs the header, or client-side code.
</Warning>

## The two endpoints you will use most

* **Start a call** — `POST /api/outbound-call`. Full reference: [Make a call](/developers/make-a-call).
* **Hear back when it finishes** — configure a webhook URL in **Settings → Developer API**. Full reference: [Webhooks](/developers/webhooks).

Zapier and n8n can also **create a lead** with `POST /api/developer/leads` and then call that lead with `POST /api/developer/leads/{leadId}/call`.

## Base URL

```text theme={null}
https://voice.trikon.tech
```

Your Trikon contact confirms the host if your workspace uses a different address.

## What to build next

For full application recipes — a CRM with pipeline columns and a Like column, and an AI appointment booking system — see [Examples](/examples/introduction).
