1. 獲取 API Key
在 platform.acedata.cloud 註冊帳號並創建 API 憑證。2. 發送第一個請求
所有 API 使用 Bearer Token 認證:3. 探索更多 API
API 參考
瀏覽並互動式測試所有 API 端點
整合指南
每個服務的詳細整合教程
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
5 分鐘上手 Ace Data Cloud API
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": "你好!"}]
}'
import requests
response = requests.post(
"https://api.acedata.cloud/v1/chat/completions",
headers={"Authorization": "Bearer YOUR_API_TOKEN"},
json={
"model": "claude-sonnet-4-20250514",
"messages": [{"role": "user", "content": "你好!"}],
},
)
print(response.json())
const response = await fetch("https://api.acedata.cloud/v1/chat/completions", {
method: "POST",
headers: {
Authorization: "Bearer YOUR_API_TOKEN",
"Content-Type": "application/json",
},
body: JSON.stringify({
model: "claude-sonnet-4-20250514",
messages: [{ role: "user", content: "你好!" }],
}),
});
const data = await response.json();
console.log(data);
