R5 Network
WebsiteR5 LabsGitHub
  • Getting Started
    • Hello & Welcome!
  • About R5
    • Overview
    • R5 Components
    • Consensus Mechanism
    • zkNet (Privacy)
  • R5 Coin
  • R5 Tokenomics
  • Tutorials & Guides
    • Connect & Use R5
      • R5 Desktop Wallet
      • MetaMask
      • Rabby Wallet
      • Coinbase Wallet
    • zkNet Web Wallet
    • R5 Desktop Wallet
      • Interface Overview
      • Send a Transaction
      • Receive a Transaction
      • Backup Your Wallet
      • Retrieve Your Private Key
    • How To: Deploy a Node
    • How To: Mine R5
    • How To: GPU Mine R5
    • How To: Build R5 From Source
    • How To: Connect Local Nodes
  • For Developers
    • R5 SDK
      • R5 Relayer
      • R5 Console
      • JS Console
      • CLI Wallet
      • SCdev
      • SSL Proxy
    • Hardware Requirements
    • R5 Testnet
    • R5 Devnet
    • Local Networks
    • JSON-RPC API
      • admin
      • debug
      • ethash
      • miner
      • net
      • r5 (eth)
      • rpc
      • txpool
      • web3
    • Indexer API
    • zkNet API
    • Node Configuration
    • Ethash-R5
    • Smart Contracts
    • Wrapped R5 (Native)
    • Tokens & NFTs
  • Bug Bounty Program
  • Resources
    • Website
    • R5 Labs
    • R5 Labs GitHub
Powered by GitBook
On this page
  • Overview
  • Endpoint & Rate Limits
  • JSON Schema
  • Plain Text Schema
  1. For Developers

Indexer API

Previousweb3NextzkNet API

Last updated 7 days ago

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 .

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.

API developer and maintainer