API Documentation

The ANDE Explorer provides a comprehensive REST API for accessing blockchain data. All endpoints return JSON responses and support pagination where applicable.

Base URL

https://explorer.ande.network/api/v2

Rate Limiting

The API has rate limiting to ensure fair usage:

  • 50 requests per second per IP address
  • Responses include rate limit headers
  • Exceeding limits returns HTTP 429
GET
/api/v2/blocks

Get a list of blocks with pagination

Parameters

type(string)- Block type filter: "block" or "reorg"

Example

curl "https://explorer.ande.network/api/v2/blocks"

Response

{"items": [{"height": 12345, "hash": "0x...", ...}], "next_page_params": {...}}
GET
/api/v2/blocks/{height_or_hash}

Get block details by height or hash

Parameters

height_or_hash(string)*- Block number or hash

Example

curl "https://explorer.ande.network/api/v2/blocks/12345"

JSON-RPC Endpoint

For direct blockchain interaction via JSON-RPC, use the ANDE Chain RPC endpoint:

https://rpc.ande.network

Chain ID: 6174

Supported methods: eth_*, net_*, web3_*

Support

For API support or to report issues, please visit our GitHub repository