---
title: "快速入門（API）"
description: "透過 REST API 以 AI 語音智能體接聽你的第一通電話：取得 API 金鑰、建立智能體、配置電話號碼，並進行即時測試通話。"
---

本指南將帶你完成四個 REST 呼叫，讓 AI 智能體接聽你的首個來電。

<Info>
  你需要擁有一個 [ThunderPhone 帳戶](https://app.thunderphone.com)。
  註冊免費，且不足一分鐘。偏好點擊操作而非使用 cURL？
  [控制台快速入門](/yue/quickstart-dashboard)讓你無需編寫任何程式碼，
  同樣完成首次通話。
</Info>

## 步驟 1：取得 API 金鑰

<Steps>
  <Step title="登入">
    開啟 [app.thunderphone.com](https://app.thunderphone.com)。
  </Step>
  <Step title="前往金鑰">
    在控制台前往 **組織 → 金鑰**。
  </Step>
  <Step title="建立金鑰">
    按一下 **建立金鑰**，為金鑰命名，然後複製
    `sk_live_...` 值。原始金鑰只會顯示 **一次** ——請立即儲存至你的
    密鑰管理工具。
  </Step>
</Steps>

<Tip>
  遇到問題？[建立伺服器 API 金鑰](/yue/guides/api-keys)會逐步詳細說明
  此流程，而應用程式內的智能助理可即時為你標示每個控制項。
</Tip>

在本指南中，請將 `sk_live_YOUR_API_KEY` 替換為你剛複製的值。
金鑰會自動識別你的組織，因此你無需在 URL 中加入組織 ID。

## 步驟 2：建立智能體

智能體定義 AI 如何處理對話——提示、語音、
產品級別、工具，以及小工具使用資格。

<CodeGroup>
```bash cURL
curl -X POST https://api.thunderphone.com/v1/agents \
  -H "Authorization: Bearer sk_live_YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "name":   "Customer Support",
    "prompt": "You are a friendly support agent for Acme Corp. Help with orders, returns, and product info. Be concise and helpful.",
    "voice":  "john",
    "product": "spark"
  }'
```

```python Python
import os, requests

agent = requests.post(
    "https://api.thunderphone.com/v1/agents",
    headers={"Authorization": f"Bearer {os.environ['THUNDERPHONE_API_KEY']}"},
    json={
        "name":   "Customer Support",
        "prompt": "You are a friendly support agent for Acme Corp. Help with orders, returns, and product info. Be concise and helpful.",
        "voice":  "john",
        "product": "spark",
    },
).json()
print("Agent id:", agent["id"])
```

```javascript Node.js
const agent = await fetch("https://api.thunderphone.com/v1/agents", {
  method: "POST",
  headers: {
    Authorization: `Bearer ${process.env.THUNDERPHONE_API_KEY}`,
    "Content-Type": "application/json",
  },
  body: JSON.stringify({
    name:    "Customer Support",
    prompt:  "You are a friendly support agent for Acme Corp. Help with orders, returns, and product info. Be concise and helpful.",
    voice:   "john",
    product: "spark",
  }),
}).then((r) => r.json());
console.log("Agent id:", agent.id);
```
</CodeGroup>

<Tip>
  產品級別：`spark` 針對成本效益最佳化，`bolt` 針對速度最佳化，
  `storm-base` / `storm-extra` 則為複雜提示提供更高智能。請參閱
  [智能體](/api-reference/agents#product-tiers-at-a-glance)查看完整比較。
</Tip>

## 步驟 3：配置電話號碼

此呼叫會向 ThunderPhone 申請一個電話號碼，並將你的
新智能體設為來電處理程式。（如要從 VoIP
供應商攜帶自有號碼，請改參閱 [VoIP 連接](/api-reference/voip-connections)。）

<CodeGroup>
```bash cURL
# First provision
curl -X POST https://api.thunderphone.com/v1/phone-numbers \
  -H "Authorization: Bearer sk_live_YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"area_code": "415"}'

# Then assign the agent you created in Step 2
curl -X PATCH https://api.thunderphone.com/v1/phone-numbers/<id-from-previous> \
  -H "Authorization: Bearer sk_live_YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"inbound_agent_id": 12}'
```

```python Python
number = requests.post(
    "https://api.thunderphone.com/v1/phone-numbers",
    headers={"Authorization": f"Bearer {os.environ['THUNDERPHONE_API_KEY']}"},
    json={"area_code": "415"},
).json()
requests.patch(
    f"https://api.thunderphone.com/v1/phone-numbers/{number['id']}",
    headers={"Authorization": f"Bearer {os.environ['THUNDERPHONE_API_KEY']}"},
    json={"inbound_agent_id": agent["id"]},
)
print("Your ThunderPhone number:", number["number"])
```
</CodeGroup>

你的新號碼初始狀態為 `status="provisioning"`，並會在
數秒內轉為 `active`；當你關閉瀏覽器時，該號碼已可接聽來電。

## 步驟 4（可選）：設定 webhook

如要接收即時事件（動態通話路由、通話後處理），請新增
webhook 端點。只訂閱你需要的事件。

```bash
curl -X POST https://api.thunderphone.com/v1/developer/webhook-endpoints \
  -H "Authorization: Bearer sk_live_YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "label":  "Prod webhook",
    "url":    "https://your-server.com/thunderphone-webhook",
    "events": ["telephony.incoming", "telephony.complete"]
  }'
```

回應包含一個僅顯示一次的 `secret` ——請將其複製到你的密鑰
管理工具。使用該密鑰驗證傳入請求的 `X-ThunderPhone-Signature`
標頭（請參閱
[Webhook 概覽](/yue/webhooks/overview)）。

## 步驟 5：測試你的智能體

致電你剛配置的號碼。智能體會接聽、自我介紹，
並依照你的提示運作。

通話結束後檢查通話記錄：

```bash
curl https://api.thunderphone.com/v1/calls \
  -H "Authorization: Bearer sk_live_YOUR_API_KEY"
```

查看特定通話，以取得逐字稿及錄音 URL：

```bash
curl https://api.thunderphone.com/v1/calls/{call_id}/transcript \
  -H "Authorization: Bearer sk_live_YOUR_API_KEY"
curl https://api.thunderphone.com/v1/calls/{call_id}/audio \
  -H "Authorization: Bearer sk_live_YOUR_API_KEY"
```

---

## 下一步

<CardGroup cols={2}>
  <Card title="新增功能工具" icon="screwdriver-wrench" href="/yue/tools/overview">
    讓你的智能體在對話期間呼叫你的 API。
  </Card>
  <Card title="撥出電話" icon="arrow-up-right" href="/api-reference/outbound-calls">
    從你的程式碼觸發通話。
  </Card>
  <Card title="處理 webhook" icon="bolt" href="/yue/webhooks/overview">
    即時回應通話事件。
  </Card>
  <Card title="完整 API 參考資料" icon="book" href="/api-reference/introduction">
    所有公開端點，均附詳細說明。
  </Card>
</CardGroup>
