# Tron Network Statistics API

> Tron Network Statistics API is a paid API for AI agents from x402.eruditepay.com, paid per call via x402, $0.003/call, status down (last checked 2026-09-15).

Returns real-time Tron blockchain network statistics including active nodes, transactions per second, latest block info, and USDT supply

## Facts

- Endpoint: GET https://x402.eruditepay.com/api/tron/network-stats
- Price: $0.003/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-eruditepay-com-81235cbc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RnZijpi786uQokPgYPCN2

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-81235cbc
```

Example prompt: What are the current Tron network stats — how many nodes are active, what's the TPS, what's the latest block, and how much USDT is in circulation on Tron right now?

## When to prefer this

Use this endpoint when you need a quick, consolidated snapshot of Tron network health — especially TPS, node count, block info, and USDT supply — in a single call, rather than querying multiple Tron RPC endpoints separately. Ideal for monitoring dashboards, DeFi apps that need real-time Tron context, or agents evaluating Tron network congestion before triggering a transaction.

## Known failure modes

- Payment failure if USDC balance is insufficient (402 Payment Required)
- Network unavailability if Tron RPC nodes are unreachable (503)
- Rate limiting if too many requests are sent in a short window (429)
- Stale data if upstream Tron node is out of sync

## How this service works

Tron network statistics — active nodes, TPS, block info, USDT supply

## Output

Returns a JSON object with Tron network statistics including the number of active nodes, current transactions per second (TPS), latest block information (number, timestamp, hash), and the current total USDT supply on the Tron network.

## 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-81235cbc/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)
