状态与 SLA
在哪里查看 TronSave 服务状态、如何上报事故,以及关于正常运行时间预期的须知。
服务状态
# Mainnet
curl -s -o /dev/null -w "%{http_code}\n" https://api.tronsave.io/v2/user-info -H "apikey: YOUR_API_KEY"
# Nile testnet
curl -s -o /dev/null -w "%{http_code}\n" https://api-dev.tronsave.io/v2/user-info -H "apikey: YOUR_API_KEY"const TRONSAVE_API = "https://api.tronsave.io"; // or https://api-dev.tronsave.io
const res = await fetch(`${TRONSAVE_API}/v2/user-info`, {
headers: { apikey: "YOUR_API_KEY" },
});
console.log(res.status); // 200 means the API is reachable and your key is valid"状态"涵盖哪些内容
服务面
端点 / URL
提供的服务
上报事故
服务水平预期
构建具备韧性的系统
后续步骤
Last updated