Status & SLA
Where to check TronSave service status, how to report incidents, and what to know about uptime expectations.
Service status
# 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 validWhat "status" covers
Surface
Endpoint / URL
What it serves
Reporting an incident
Service level expectations
Building for resilience
Next steps
Last updated