跳轉到主要內容

1. 獲取 API Key

platform.acedata.cloud 註冊帳號並創建 API 憑證。
1

註冊帳號

訪問 platform.acedata.cloud 完成註冊。
2

訂閱服務

瀏覽可用服務,點擊獲取完成訂閱。大部分服務提供免費額度。
3

創建憑證

進入服務的憑證頁面,創建 API Token。

2. 發送第一個請求

所有 API 使用 Bearer Token 認證:
curl -X POST https://api.acedata.cloud/v1/chat/completions \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "claude-sonnet-4-20250514",
    "messages": [{"role": "user", "content": "你好!"}]
  }'

3. 探索更多 API