ARIAX Price $— Fee 5 ARIAX
ARIAX Mainnet Chain ID 134235

API Reference

Read-only · JSON

A public, read-only JSON API over the indexed ARIAX chain data. No authentication required. All responses are application/json; list endpoints use keyset paging via ?before=. Requests are rate-limited and cache-friendly (ETag / Cache-Control supported).

Base URL
https://ariaexp.com
Format
JSON (UTF-8)
Auth
None — public read access

Endpoints

12 routes

Latest blocks (newest first).

before Block height — return blocks older than this (keyset paging).
GET /api/txs

Latest transactions (newest first).

before Transaction id — return older transactions.
GET /api/block/{id}

A single block by height or hash, with its transactions.

GET /api/tx/{hash}

A single transaction by hash.

GET /api/address/{address}

Address summary: balance and sent/received aggregates.

Autocomplete: resolve a prefix to addresses, tx and block hashes.

q Search query (min. 2 chars).

Network overview: latest block, totals, live price and market cap.

Time-bucketed transaction & block counts for charts.

Live ARIAX price and market cap.

GET /health

Service health probe (database + chain tip freshness).

Download blocks as CSV.

GET /address/{address}/txs.csv

Download an address's transactions as CSV.

Example

GET /api/stats
{
  "latest_block": 2630,
  "total_txs": 945,
  "total_holders": 90,
  "price": 0.2004,
  "market_cap": 40080000,
  "symbol": "ARIAX"
}