Indexer API

Overview

The R5 Indexer API provides an interface for querying curated analytics data from the R5 Blockchain. Applications and dapps can call these endpoints to query complex and comprehensive data from the blockchain, and it complements the JSON-RPC API calls that can be made directly to RPC nodes.

The API returns data in two formats:

  • JSON

  • Plain Text

JSON queries are used to display more complex datasets, whereas plain text endpoints often display single datapoints.

Endpoint & Rate Limits

The rate limit is set to 100 requests per 15 minutes per IP. If you need higher limits, please get in touch with the API developer and maintainer.

Public Endpoint:

https://api.r5labs.org

JSON Schema

Endpoint
Method
Description

/v1/supply

GET

Total/Circulating supply of R5 Coins.

/v1/max-supply

GET

Maximum supply of R5 Coins.

/v1/transactions/total

GET

Total amount of transactions processed by the blockchain.

/v1/transactions/<address>

GET

List of transactions for <address>.

/v1/transactions/hash/<txHash>

GET

Transaction information for <txHash>.

/v1/transactions/token/<address>

GET

List of token transactions for <address>.

/v1/accounts/active

GET

Total number of active accounts.

/v1/accounts/total

GET

Total number of accounts, active, and inactive.

/v1/contracts/total

GET

Total number of contracts deployed on chain.

/v1/tokens/total

GET

Total number of tokens deployed on chain.

/v1/txt/supply

GET

Total/Circulating supply of R5 Coins.

/v1/txt/max-supply

GET

Maximum supply of R5 Coins.

Plain Text Schema

Endpoint
Method
Description

/v1/txt/supply

GET

Total/Circulating supply of R5 Coins.

/v1/txt/max-supply

GET

Maximum supply of R5 Coins.

Last updated