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

18 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.

GET /api/address/{address}/balance-history

Daily balance history reconstructed from transfers.

period 7d | 30d | 90d | all (default 30d).

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.

Primary activity series for one metric over a period.

metric transactions | addresses | volume.
period 24h | 7d | 30d | 90d.

A single analytics-hub series.

type transactions | addresses | volume | new-addresses | cumulative-addresses | block-time.
period 7d | 30d | 90d.

Top-holder nodes and their direct transfer relationships.

limit 25 | 50 | 100 (default 50).
min_value minimum ARIAX transferred to draw a connection.

Recent native transfers at or above the configured threshold.

Live ARIAX price and market cap.

Accumulated ARIAX price points for the price chart.

period 24h | 7d | 30d | 90d | all (default 7d).
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"
}