快速上手
五分鐘內完成第一次 API 呼叫。
步驟
3
發出第一個已認證的請求
curl https://api.blockchainsecurity.asia/v1/webhooks \
-H "X-API-Key: ak_live_YOUR_KEY"import requests
resp = requests.get(
"https://api.blockchainsecurity.asia/v1/webhooks",
headers={"X-API-Key": "ak_live_YOUR_KEY"},
)
print(resp.json())const resp = await fetch("https://api.blockchainsecurity.asia/v1/webhooks", {
headers: { "X-API-Key": "ak_live_YOUR_KEY" },
});
console.log(await resp.json());常見問題
下一步
認證與 API key回應格式Last updated
Was this helpful?

