Real-time stablecoin analytics for the Arc testnet, as a REST API. ← Back to the terminal
Free tier: 60 requests/min, all read endpoints, 1 alert. No signup.
Send it as the X-API-Key header on every /v1 request.
curl https://stabledesk.xyz/v1/network \ -H "X-API-Key: sbd_demo"
sbd_demo is a shared public key for quick testing. Generate your own for real usage. No key needed for /v1/status.
?days=30 availability record — read coveragePct before uptimePct?token=USDC&range=24h time series?format=csv?format=csv?protocol=id&days=30 daily TVL · ?format=csv?q= protocols, tokens and addresses?limit=20 top by volume?limit=20 biggest transfersThe full API is described in /openapi.json (OpenAPI 3.1) — every endpoint, parameter, response shape and error code, generated from the running configuration so it can't drift from what the API actually serves. Point a client generator, an IDE or an agent at it rather than reading this page.
/llms.txt is the short version for language models: what this measures, where the data comes from, and the two or three conventions you need before quoting a number from it.
| Tier | Rate limit | Alerts | Price |
|---|---|---|---|
| Free | 60 req/min | 1 webhook | $0 |
| Pro | 600 req/min | 20 webhooks | coming soon |
Free tier includes 1 webhook alert (Pro: 20). Register a rule and get an HTTPS POST (Discord / Slack / Telegram / your backend) whenever a matching stablecoin transfer is indexed. Fires at most once per minute per rule. Webhooks must be public https:// URLs.
curl -X POST https://stabledesk.xyz/v1/alerts \
-H "X-API-Key: YOUR_KEY" -H "content-type: application/json" \
-d '{"token":"USDC","minAmount":100000,"webhook":"https://discord.com/api/webhooks/…"}'
curl -X DELETE https://stabledesk.xyz/v1/alerts/1 \
-H "X-API-Key: YOUR_KEY"