快速開始(API)
本指南將帶你完成接聽首個 AI 語音智能體來電所需的四個 REST 呼叫。
步驟 1:取得 API 金鑰
- 登入
- 前往金鑰
在控制台中前往 組織 → 金鑰。
- 建立金鑰
按一下 建立金鑰,為其命名,然後複製
sk_live_...值。原始金鑰只會顯示一次——請立即將其儲存至 密鑰管理工具。
在本指南中,請以你剛複製的值取代 sk_live_YOUR_API_KEY。
此金鑰會自動識別你的組織,因此你無需在 URL 中加入組織 ID。
步驟 2:建立智能體
智能體定義 AI 如何處理對話——包括提示詞、語音、 產品級別、工具及 Widget 使用資格。
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"
}'
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"])
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);
步驟 3:配置電話號碼
此呼叫會向 ThunderPhone 的示範號碼池請求一個號碼,並將你的新智能體指派為來電處理程式。(如要從 VoIP 服務供應商攜帶自有號碼,請參閱VoIP 連線。)
# 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}'
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"])
你的新號碼初始狀態為 status="provisioning",並會在數秒內轉為
active;當你關閉瀏覽器時,該號碼已可接聽來電。
步驟 4(可選):設定 Webhook
如要接收即時事件(動態通話路由、通話後處理),請新增 Webhook 端點。只訂閱你需要的事件。
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 概覽)。
步驟 5:測試你的智能體
致電你剛配置的號碼。智能體會接聽、自我介紹,並依照你的提示執行。
通話結束後檢查通話記錄:
curl https://api.thunderphone.com/v1/calls \
-H "Authorization: Bearer sk_live_YOUR_API_KEY"
深入查看特定通話,以取得文字記錄及錄音 URL:
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"