Pellet Docs

Stablecoins

List, inspect, and analyze every TIP-20 stable on Tempo.

GET /v1/stablecoins

Returns every TIP-20 stable currently tracked on Tempo. Free tier.

curl https://pelletfi.com/api/v1/stablecoins
{
  "stablecoins": [
    {
      "address": "0x20c0...0000",
      "symbol": "pathUSD",
      "name": "Tempo Path Dollar",
      "peg": { "price": 1.0000, "spread_bps": 0 },
      "supply": { "current": "1090000", "cap": null },
      "policy": { "type": "blacklist" }
    }
  ]
}

GET /v1/stablecoins/{address}

Current state for a single stable. Free tier.

curl https://pelletfi.com/api/v1/stablecoins/0x20c0...0000

Response includes peg, supply, policy, role holders, and recent supply events. See Tempo Primer for field definitions.

GET /v1/stablecoins/{address}/analysis

Full editorial briefing — origin story, issuer context, risk assessment, backing structure. Paid endpoint. $0.05 pathUSD via MPP.

mppx GET https://pelletfi.com/api/v1/stablecoins/0x20c0...0000/analysis

Without a payment header, the server responds 402 Payment Required with MPP instructions. With mppx (or any MPP client), the payment is signed and attached automatically.

{
  "address": "0x20c0...0000",
  "symbol": "pathUSD",
  "briefing": {
    "origin": "pathUSD is Tempo's protocol-native stablecoin...",
    "backing": "protocol-native",
    "issuer_context": "Issued by the Tempo treasury module...",
    "risk": {
      "peg_risk": "low",
      "policy_risk": "low",
      "centralization_risk": "medium"
    }
  }
}

Pro subscribers can skip MPP and pass Authorization: Bearer <key> instead.