# Tron Stablecoin Analytics

> Tron Stablecoin Analytics is a paid API for AI agents from x402.eruditepay.com, paid per call via x402, $0.008/call, status down (last checked 2026-09-16).

Returns stablecoin analytics on the Tron network including supply, trading volume, velocity, and top trading pairs

## Facts

- Endpoint: GET https://x402.eruditepay.com/api/tron/stablecoin-analytics
- Price: $0.008/call
- Payment: x402
- Status: down
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-eruditepay-com-cda2cfa9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TMfIczQnUnVDA9cFG9R9A

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability x402-eruditepay-com-cda2cfa9
```

Example prompt: What's the current stablecoin supply, trading volume, velocity, and top trading pairs on the Tron network right now?

## When to prefer this

Use this endpoint when you need a comprehensive stablecoin market snapshot specifically on the Tron blockchain, including supply, volume, velocity, and pair-level data in a single call. Prefer this over generic blockchain explorers when you want pre-aggregated stablecoin analytics rather than raw transaction data.

## Known failure modes

- Tron network data unavailable — upstream node failure
- Payment not completed — HTTP 402 returned if USDC micropayment not fulfilled
- Invalid query parameters — 400 error if unsupported params are passed
- Data staleness — analytics may lag real-time chain state by a few blocks
- Rate limiting — repeated calls without payment may be rejected

## How this service works

Stablecoin analytics on Tron — supply, volume, velocity, top pairs

## Output

Returns structured analytics for stablecoins on Tron including total supply figures, trading volume metrics, velocity (how quickly stablecoins are changing hands), and a list of the top trading pairs by activity.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-eruditepay-com-cda2cfa9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.eruditepay.com](https://www.zero.xyz/host/x402.eruditepay.com/llms.txt)
