Reference
Data API
Ready-made launchpad/DEX market data as REST. Each endpoint below has its own page with parameters, request examples, and a sample response.
Base URL
https://solindex.infinityblocks.io/v1
All requests are GET with an x-api-key header (the one exception is the add-only whitelist: POST /v1/programs/{programId}/whitelist); responses are wrapped in { "data": … }. Amounts are human units, prices USD, timestamps unix-ms. Indexed venues: Raydium (LaunchLab, AMM v4, CLMM, CPMM, StableSwap) and Meteora (DLMM, DAMM v1/v2, DBC).
Endpoints
GET /v1/statsPlatform-wide totals and 24-hour activity.
GET /v1/trendingTop tokens by trading volume in a time window.
GET /v1/launchesRecent token launches with metadata. Paginated.
GET /v1/tokens/{mint}Full token summary — metadata, price, market cap, 24h volume, holders, and bonding curve in one call.
GET /v1/tokens/{mint}/priceLightweight current price, market cap and 24h volume.
GET /v1/tokens/{mint}/candlesOHLCV candles, ready for charting libraries.
GET /v1/tokens/{mint}/tradesRecent trades for a token. Paginated.
GET /v1/tokens/{mint}/holdersHolder list with supply concentration. Paginated.
GET /v1/tokens/{mint}/bonding-curveLaunchLab bonding-curve progress and liquidity.
GET /v1/tokens/{mint}/poolsPools registered for a token.
GET /v1/metadata/{mint}Token identity — name, symbol, decimals, supply — decoded on-chain. The getAsset-style lookup. Single or batched.
GET /v1/wallets/{wallet}/tradesA wallet's trade history across all tokens. Paginated.
GET /v1/programs/{programId}/accountsEnumerate a whitelisted program's accounts with dataSize + memcmp filters — the getProgramAccounts equivalent, served from the on-disk mirror.
GET /v1/wallets/{wallet}/holdingsA wallet's token holdings (portfolio) across all tracked tokens, priced. The self-hosted getTokenAccountsByOwner equivalent.
Power users: a raw read-only
SELECT-only SQL endpoint (ClickHouse HTTP) is also available on the same host for ad-hoc analytics — usable with @clickhouse/client (username:"degensafe", password:<API_KEY>).