BlockVectra

Data API

REST endpoints over indexed Robinhood Chain data.

Overview

The Data API provides REST endpoints for querying indexed data from Robinhood Chain — blocks, transactions, addresses, tokens, NFTs, DEX activity, tokenized stocks, and dataset freshness.

  • Base URL: https://dev-api.blockvectra.network/v1 — the public path prefix rpc-gateway will forward this under has not been finalized yet, so always read it from your environment configuration instead of hardcoding a host
  • Protocol: HTTP GET, JSON responses
  • Authentication: serve-data itself has no authentication of its own; it sits behind rpc-gateway, which is responsible for authentication, quota, and billing on the public side

See Quickstart → Call the Data API for a preview of the request/response shape.

Ops

MethodPathSummary
GET/healthzLiveness check
GET/status/freshnessFreshness/lag summary for every tracked table

Chain

MethodPathSummary
GET/blocks/{number}#1 Point lookup a block by number
GET/blocks/hash/{hash}#2 Point lookup a block by hash
GET/blocks/{number}/transactions#3 List a block's transactions
GET/transactions/{hash}#4 Point lookup a transaction by hash

Addresses

MethodPathSummary
GET/addresses/{address}/transactions#5 List an address's transactions
GET/addresses/{address}/balances#8 List an address's ERC-20 balances

Tokens

MethodPathSummary
GET/tokens/{token}/transfers#6 List a token contract's transfers
GET/tokens/{token}/holders#9 List a token's holders
GET/tokens/{token}#10 Point lookup token metadata
POST/tokens:batch#10 Batch lookup token metadata

NFTs

MethodPathSummary
GET/nfts/{contract}/{token_id}#11 Point lookup one NFT's owner/holders
GET/nfts#11 List NFTs owned by an address

DEX

MethodPathSummary
GET/dex/swaps#12 List DEX swaps by pool or token
GET/dex/prices#13 Daily DEX token prices

Stocks

MethodPathSummary
GET/stocks#14 Daily leaderboard of tokenized stocks
GET/stocks/{token}#14 Point lookup one tokenized stock

Traces

MethodPathSummary
GET/blocks/{number}/traces#15 Historical callTracer trace tree for a whole block
GET/transactions/{hash}/trace#15 Historical callTracer trace tree for one transaction

On this page