Introduction
Most Solana APIs are fragmented or require expensive subscriptions. Orb unifies data fetching into a single intuitive endpoint. We handle the complexity of determining whether an input is a wallet, token mint, program ID, or transaction signature, and return a standardized JSON payload.
This service acts as a community proxy for premium providers like Helius, making high-quality data accessible for side projects, hackathons, and exploration.
Authentication
No API keys required. Simply make requests to the endpoints. We rely on global rate limiting to prevent abuse.
/api/search Smart lookup. Detects the type of the query string and returns the relevant data snapshot.
Query Parameters
q string
The search query. Can be an address, signature, or utilize prefixes like
token: or program: to force a specific lookup type.
curl "https://solexscan.com/api/search?q=token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"
Response Example
{
"type": "token",
"payload": {
"mint": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"name": "USD Coin",
"symbol": "USDC",
"supply": 34966567942.34567,
"price": 0.9999,
"marketCap": 34963071295.54,
...
}
} /api/pump/:mint Retrieve detailed metadata for any token created on Pump.fun. Includes bonding curve progress, market cap, and reply counts.
Path Parameters
mint string
The mint address of the Pump.fun token.
curl "https://solexscan.com/api/pump/DoM...8y"
Response Example
{
"mint": "DoM...8y",
"name": "Pepe",
"symbol": "PEPE",
"description": "The most memeable memecoin in existence.",
"image_uri": "https://ipfs.io/ipfs/Qm",
"market_cap": 42069.12,
"reply_count": 15,
"bonding_curve": "5d",
"raydium_pool": null,
"complete": false
}