Skip to main content
Use SQL API to track mint-level volume, wallet transfer history, and decoded SPL Token / Token-2022 instructions on Solana Mainnet—without running your own indexer.
Solana support is in public beta. Coverage focuses on SPL Token and Token-2022 at launch (plus native SOL transfers in solana.transfers). About 3 months of history is retained, and the schema may evolve during beta.

What’s covered

Well-known program IDs:

Access

SQL Playground

Try queries in your browser (no API keys needed)

REST API

Programmatic access

Example queries

Try these in the SQL Playground before integrating programmatically.

Recent transfers for a mint

Replace {mint} with the token mint you are tracking (for example, USDC: EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v):

Transfer volume for a mint

Daily transfer volume in base units for a mint over the last 7 days:

Recent wallet transfer history

Query by owner wallet—not token account—using source_owner / destination_owner. Always bound block_time (owners are not the leading index):

Instruction activity for a program

Recent decoded instructions for SPL Token or Token-2022:

Reconstruct transfers with instruction context

Join transfers back to the source instruction via instruction_id:

Query tips

  1. Filter on indexed columns — for transfers, lead with mint and block_time; for instructions, lead with executing_account, instruction_name, and block_time.
  2. Query wallets via owners — SPL transfers expose token accounts in source / destination. Use source_owner / destination_owner (or account_owners on instructions) to filter by holder wallet.
  3. Use the solana.* prefix — Solana tables use this prefix
  4. Scope to active rows — filter action = 1 (or 'added') the same way you would on Base; small re-orgs are possible at the tip. Prefer instruction_id as the stable id across reprocessing.
  5. Scope time ranges — about 3 months of history is retained; always bound block_time for faster queries.

Scope and limitations

  • Programs: Instruction decoding focuses on SPL Token and Token-2022. solana.transfers also includes native SOL transfers from the System program.
  • Not a full instruction set: Arbitrary program coverage is not available yet.
  • History: Approximately 3 months of historical data available as of 12-Aug-2026 launch.
  • Beta: Schema and coverage may change during public beta.

Learn more

  • Schema reference — full solana.instructions and solana.transfers column definitions
  • Quickstart — run your first SQL API query
  • Best practices — indexing and query patterns
  • FAQ — networks, limits, and re-org handling