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 prefixrpc-gatewaywill 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-dataitself has no authentication of its own; it sits behindrpc-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
| Method | Path | Summary |
|---|---|---|
| GET | /healthz | Liveness check |
| GET | /status/freshness | Freshness/lag summary for every tracked table |
Chain
| Method | Path | Summary |
|---|---|---|
| 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
| Method | Path | Summary |
|---|---|---|
| GET | /addresses/{address}/transactions | #5 List an address's transactions |
| GET | /addresses/{address}/balances | #8 List an address's ERC-20 balances |
Tokens
| Method | Path | Summary |
|---|---|---|
| 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
| Method | Path | Summary |
|---|---|---|
| GET | /nfts/{contract}/{token_id} | #11 Point lookup one NFT's owner/holders |
| GET | /nfts | #11 List NFTs owned by an address |
DEX
| Method | Path | Summary |
|---|---|---|
| GET | /dex/swaps | #12 List DEX swaps by pool or token |
| GET | /dex/prices | #13 Daily DEX token prices |
Stocks
| Method | Path | Summary |
|---|---|---|
| GET | /stocks | #14 Daily leaderboard of tokenized stocks |
| GET | /stocks/{token} | #14 Point lookup one tokenized stock |
Traces
| Method | Path | Summary |
|---|---|---|
| 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 |