BotanaryBotanary

Depeg

Depeg visibility (FR-9) - peg status of held stablecoins. Visibility-only in v1.

List depeg signals for held stablecoins (FR-9, visibility-only)

GET
/depeg

Authorization

sessionToken
AuthorizationBearer <token>

Botanary session token from POST /auth/session. Not a key - a revocable session bearer.

In: header

Response Body

application/json

application/json

curl -X GET "https://api.app.botanary.xyz/depeg"
[
  {
    "id": "peg-usdt",
    "symbol": "USDT",
    "price": 0.9938,
    "target": 1,
    "deviationBps": -62,
    "status": "ok",
    "observedAt": "2019-08-24T14:15:22Z",
    "source": "chainlink",
    "unavailableReason": "Chainlink oracle unavailable",
    "heldAmount": 2100,
    "heldFiat": 2100.42,
    "message": "USDT is $0.9938 (-0.6%). You hold 2,100 USDT. v1 alerts only - you decide."
  }
]
{
  "error": {
    "code": "unauthorized",
    "message": "Session token missing or expired."
  }
}