Starter Queries
Every query below is saved in the Bitquery IDE and was executed against the live API before publishing. Pick a chain, then a data type. Queries marked as needing history use the archive or combined dataset — the comment at the top of each of those queries shows the single line to change.
Table of Contents
- Bitcoin
- Solana
- Robinhood Chain
- Polymarket
- Perpetuals
- TRON
- Cross-Chain
- Ethereum
- BSC
- Base
- Arbitrum
- Optimism
- Polygon
- Avalanche
- Celo
- Cronos
- Klaytn
- Litecoin
- Bitcoin Cash
- Dogecoin
- Dash
- Zcash
- Cardano
- Ripple
- Stellar
- Algorand
- Filecoin
- Trading API
- Stablecoins
- NFTs
- Futures DEXs
- x402
Bitcoin
Transfers
Inflows and Outflows of a wallet
This API returns all incoming and outgoing transactions for a specific Bitcoin wallet address.
▶️ Inflows and Outflows of a wallet
Balances & Holders
Balance of an address at a past date
What one Bitcoin address held as of a chosen date. Move the date in the Variables pane.
▶️ Balance of an address at a past date
Bitcoin Balance for multiple addresses
This query calculates the combined balance of multiple Bitcoin wallet addresses by summing their total inflows and outflows: Balance = Total Output - Total Input. You can also set a date to get balances as of a specific point in time.
▶️ Bitcoin Balance for multiple addresses
BTC balance api for multiple addresses
Pass an array of addresses to inputAddress and outputAddress with {in: [...]} to get per-wallet totals in a single request. Useful for exchanges, custodians, and portfolio dashboards that monitor many wallets at once.
▶️ BTC balance api for multiple addresses
Bitcoin balance
Returns total BTC sent (inputs) and received (outputs) for an address, along with USD-equivalent values and first / last activity dates. Subtract inputs.value from outputs.value to get the current balance.
Bitcoin balance at a given height
Need to know what a wallet held at a particular point in time? The height filter caps inputs and outputs at a given block number, which is exactly what you need for audits, tax reporting, and point-in-time portfolio snapshots.
▶️ Bitcoin balance at a given height
Bitcoin balance on a given block height
Sum outputs and subtract inputs with a height: {lteq: N} cap to get the wallet's balance at a specific point on-chain. Useful for audits, tax snapshots, and point-in-time portfolio reporting.
▶️ Bitcoin balance on a given block height
Price & OHLC
Btc price in 2016
Pulls the BTC/USD price implied by any output on a given date — Bitquery stores the spot value at the time of each transaction, so you can derive a historical price by dividing USD value by BTC value.
Transactions
Details of Bitcoin Transaction
This API provides comprehensive details of a specific Bitcoin transaction in a single query.
▶️ Details of Bitcoin Transaction
Blocks & Validators
Bitcoin miners rewards
Mining rewards live in coinbase outputs (the first transaction in every block, txIndex: 0) with outputDirection: mining.
Get miners activity in a specific timeframe
Pulls the activity count per miner address inside a date range. Drop or extend the date window to size the cohort however you need.
▶️ Get miners activity in a specific timeframe
Get miners first activity
For a specific set of miner addresses, this query returns the first block each one mined. Useful for cohort analysis, miner onboarding studies, or building "first seen" timelines.
Solana
Trades
Get Swaps by Pair Address
Get all trades related transactions for a specific pair address. Trading cube — real-time and roughly the last 30 days. For anything older, use the DEXTradeByTokens entries at the bottom of this section.
Get Trades by Wallet Address
Get all trades related transactions (buy, sell) for a specific wallet address. Trading cube — real-time and roughly the last 30 days. For anything older, use the DEXTradeByTokens entries at the bottom of this section.
▶️ Get Trades by Wallet Address
Get Volume Stats for Solana Chain
Traded volume, trade count and active wallets for Solana over a stated window, from DEXTradeByTokens. Two things this query has to work around. Solana.DEXTrades keeps about 12 hours and has no archive, so it cannot answer this at all. And a uniq in the same selection as sum and count corrupts those aggregates and freezes the time filter with them - asking for 1, 3 or 6 days then returns the same totals - so active wallets is computed in its own aliased call. The volume sum also excludes single trades above $1M, which are mispriced rows; without that guard the total reads about $32 quadrillion a day instead of about $16 billion.
▶️ Get Volume Stats for Solana Chain
Get Multiple Token Analytics — historical (beyond 30 days)
Returns analytics data for multiple token addresses. Built from raw DEX trades, so it reaches back further than the Trading cube's ~30 days. For live prices prefer the Trading cube entries at the top of this section.
▶️ Get Multiple Token Analytics — historical (beyond 30 days)
Get Token Metadata — historical (beyond 30 days)
Get the token metadata for contract (mint, standard, name, symbol). Built from raw DEX trades, so it reaches back further than the Trading cube's ~30 days. For live prices prefer the Trading cube entries at the top of this section.
▶️ Get Token Metadata — historical (beyond 30 days)
Get Token Pair Stats — historical (beyond 30 days)
Get the pair stats by using pair address. Built from raw DEX trades, so it reaches back further than the Trading cube's ~30 days. For live prices prefer the Trading cube entries at the top of this section.
▶️ Get Token Pair Stats — historical (beyond 30 days)
Get Token Pairs by Address — historical (beyond 30 days)
Get the supported pairs for a specific token address. Built from raw DEX trades, so it reaches back further than the Trading cube's ~30 days. For live prices prefer the Trading cube entries at the top of this section.
▶️ Get Token Pairs by Address — historical (beyond 30 days)
Realised PnL, avg buy price, buy volume, sell volume of a Trader for specific token — historical (beyond 30 days)
Get realised PnL, average buy price, buy volume, and sell volume for a token on Solana of a trader for over a time window. Built from raw DEX trades, so it reaches back further than the Trading cube's ~30 days. For live prices prefer the Trading cube entries at the top of this section.
Search tokens by name, symbol, mint address — historical (beyond 30 days)
Search for tokens based on contract address, token name or token symbol. Built from raw DEX trades, so it reaches back further than the Trading cube's ~30 days. For live prices prefer the Trading cube entries at the top of this section.
▶️ Search tokens by name, symbol, mint address — historical (beyond 30 days)
Buys Sells BuyVolume SellVolume Makers TotalTradedVolume PriceinUSD for solana token pair — historical (beyond 30 days)
Returns the essential stats for a token such as buy volume, sell volume, total buys, total sells, makers, total trade volume, buyers, sellers (in last 5 min, 1 hour) of a specific token. Built from raw DEX trades, so it reaches back further than the Trading cube's ~30 days. For live prices prefer the Trading cube entries at the top of this section.
Transfers
Simple SOL transfers (Transactions not trades)
This API returns simple SOL transfers; in other words, it contains transactions that are simple token transfers, not trades.
▶️ Simple SOL transfers (Transactions not trades)
Solana Token Transfers for a Specific Address
This API retrieves the history of token transfers (both sent and received) for a specific Solana address within a defined time period.
▶️ Solana Token Transfers for a Specific Address
Solana Transfers
This query gets the latest 10 transfers on Solana. You can increase the limit to get more transfers. This query only uses real-time data.
Solana Historical Transfers
Solana Historical Transfers.
▶️ Solana Historical Transfers
Currency with elon inclusion
You can search tokens on Solana using names or symbols case insensitively also using our APIs and get prices and other details.
▶️ Currency with elon inclusion
Solana token transfers of Bags fm tokens
Track all transfers of Bags FM tokens across wallets. This Bags FM token transfers endpoint provides complete transfer history. 🔗.
▶️ Solana token transfers of Bags fm tokens
Total txn fees paid by the Account
Get the total fees (in SOL and USD) paid by a specific Solana account across all transfers.
▶️ Total txn fees paid by the Account
Transaction fees paid by Account aggregated by currency
Get total fees paid by a Solana account for transferring each type of token.
▶️ Transaction fees paid by Account aggregated by currency
Transfers of a wallet
Fetches the recent 10 transfers of a specific wallet address 9nnLbotNTcUhvbrsA6Mdkx45Sm82G35zo28AqUvjExn8.
Wallet transfers with transaction fees paid
Track wallet token transfers and get the fees paid for each by the address.
▶️ Wallet transfers with transaction fees paid
Balances & Holders
Solana Instruction Balance Updates
This query returns Solana balance update info for any balance update event, including the address, amount, currency details, and the details of the program responsible for this update.
▶️ Solana Instruction Balance Updates
Balance updates
Returns balance update associated with a instruction invocation.
Solana balance updates executing burn instruction
The query below uses the InstructionBalanceUpdates API to fetch balance updates that occur when token burn instructions execute.
▶️ Solana balance updates executing burn instruction
Trades of wallets with balance Updates in that trades
Trades made by the wallets in addressList, with the balance updates from those same transactions joined on. Uses DEXTradeByTokens rather than Solana.DEXTrades: DEXTrades keeps only about 12 hours on Solana and has no archive, so the previous version returned no rows whenever the wallet had not traded in the last half day. DEXTradeByTokens keeps about 7 days and supports archive for older windows.
▶️ Trades of wallets with balance Updates in that trades
Price & OHLC
Token price from top market (rank 1)
Prices SOL from its single top market rather than blending every pool — the recommended way to price one specific token. Replace token in the Variables pane, lowercase.
▶️ Token price from top market (rank 1)
Get OHLCV by Pair Address
You can get charting data easily with this query. Adjust the intervals as necessary. This query supports historical data. Trading cube — real-time and roughly the last 30 days. For anything older, use the DEXTradeByTokens entries at the bottom of this section.
Get Latest Price of a Token in USD
Get Latest Price of a Token in USD. Uses the Pairs cube. Replace the address in the where clause to use it. Trading cube — real-time and roughly the last 30 days. For anything older, use the DEXTradeByTokens entries at the bottom of this section.
▶️ Get Latest Price of a Token in USD
Historical Price and Volume Data (Volume & Price, Last 24h using Trading API)
Use this API to get historical price and volume for a specific token over the past 24 hours. Trading cube — real-time and roughly the last 30 days. For anything older, use the DEXTradeByTokens entries at the bottom of this section.
▶️ Historical Price and Volume Data (Volume & Price, Last 24h using Trading API)
Get Token Prices on Solana — historical (beyond 30 days)
Returns price information for multiple Solana tokens in a single request. Built from raw DEX trades, so it reaches back further than the Trading cube's ~30 days. For live prices prefer the Trading cube entries at the top of this section.
▶️ Get Token Prices on Solana — historical (beyond 30 days)
Price change 5min, 1hr, 6hr precentage of a specific token — historical (beyond 30 days)
With this, you can get the price change 5min, 1hr, 6hr precentage of a specific token. Built from raw DEX trades, so it reaches back further than the Trading cube's ~30 days. For live prices prefer the Trading cube entries at the top of this section.
▶️ Price change 5min, 1hr, 6hr precentage of a specific token — historical (beyond 30 days)
Top 10 solana tokens by price change in last 1 hr — historical (beyond 30 days)
With this, you can get top 10 solana tokens by price change in last 1 hr. Built from raw DEX trades, so it reaches back further than the Trading cube's ~30 days. For live prices prefer the Trading cube entries at the top of this section.
▶️ Top 10 solana tokens by price change in last 1 hr — historical (beyond 30 days)
ATH of multiple tokens quantile Solana — historical (beyond 30 days)
ATH of multiple tokens quantile Solana. Uses the DEXTradeByTokens cube. Needs the historical data add-on — see the comment at the top of the query. Built from raw DEX trades, so it reaches back further than the Trading cube's ~30 days. For live prices prefer the Trading cube entries at the top of this section.
▶️ ATH of multiple tokens quantile Solana — historical (beyond 30 days)
ATH with price delta Solana — historical (beyond 30 days)
Fetches a Solana token’s ATH price, ATH date, and price change percentages over the past 24h, 7d, and 30d using Bitquery Solana APIs. Try the. Built from raw DEX trades, so it reaches back further than the Trading cube's ~30 days. For live prices prefer the Trading cube entries at the top of this section.
▶️ ATH with price delta Solana — historical (beyond 30 days)
AldrinAmm OHLC for specific pair — historical (beyond 30 days)
If you want to get OHLC data for any specific currency pair on AldrinAmm, you can use this api. Only use. Built from raw DEX trades, so it reaches back further than the Trading cube's ~30 days. For live prices prefer the Trading cube entries at the top of this section.
▶️ AldrinAmm OHLC for specific pair — historical (beyond 30 days)
Get Latest Price of Apple xStock in USD Real-time — historical (beyond 30 days)
You can use the following query to get the latest price of a Apple xStock on Solana. Built from raw DEX trades, so it reaches back further than the Trading cube's ~30 days. For live prices prefer the Trading cube entries at the top of this section.
▶️ Get Latest Price of Apple xStock in USD Real-time — historical (beyond 30 days)
Supply & Market Cap
Sandisk - Backpack Securities MCAP
See the Pairs cube for full field reference. Trading cube — real-time and roughly the last 30 days. For anything older, use the DEXTradeByTokens entries at the bottom of this section.
▶️ Sandisk - Backpack Securities MCAP
Top Tokens by Market Cap on solana
Ranks tokens on Solana by Supply.MarketCap, with 24h window, 1s interval, $1,000+ USD volume, limitBy per Token_Id, up to 50 rows. Token.Network is Solana. Trading cube — real-time and roughly the last 30 days. For anything older, use the DEXTradeByTokens entries at the bottom of this section.
▶️ Top Tokens by Market Cap on solana
Bags.fm token creation using Solana token supply updates
Bags.fm token creation using Solana token supply updates. Uses the TokenSupplyUpdates cube. Replace the address in the where clause to use it.
▶️ Bags.fm token creation using Solana token supply updates
Market cap of token
You can fetch Marketcap of a token using below query.
Token burn example solana
You can also track real-time token burn using the TokenSupplyUpdates API. Check out the.
Token supply
Will return the latest token supply of a specific token. We are getting here supply for this 6D7NaB2xsLd7cauWu1wKk6KBsJohJmP2qZH9GEfVi5Ui token PostBalance will give you the current supply for this token.
▶️ Token supply
Tokens with market cap range
Lets say we need to get the tokens whose marketcap has crossed the 1M USD mark but is less than 2M USD for various reasons like automated trading. We can get the token details that have crossed a particular marketcap using.
▶️ Tokens with market cap range
Top 10 marketcap jump tokens in last 1hr
Use below query to get top 10 marketcap jump tokens in last 1hr.
▶️ Top 10 marketcap jump tokens in last 1hr
Top Solana tokens based on market cap
Top Solana tokens based on market cap. Uses the TokenSupplyUpdates cube.
▶️ Top Solana tokens based on market cap
Marketcap of tokens — historical (beyond 30 days)
Returns the ATH (All-Time High) market cap, starting market cap, and related price metrics for multiple tokens. It calculates market cap using a 1 billion token supply and uses quantile to find the ATH price. Built from raw DEX trades, so it reaches back further than the Trading cube's ~30 days. For live prices prefer the Trading cube entries at the top of this section.
▶️ Marketcap of tokens — historical (beyond 30 days)
Liquidity & Pools
All Token Pairs Across DEXs with Current Liquidity
This query retrieves all instances of a specific token pair across decentralized exchanges (DEXs) on Solana, along with their current liquidity.
▶️ All Token Pairs Across DEXs with Current Liquidity
Latest Pools Created on Launchpad
This query returns the latest created pools on Raydium launchpad. You can set the limit here also.
▶️ Latest Pools Created on Launchpad
Liquidity of All Pools of a Token on Solana
Get latest liquidity snapshots for all pools where a token is either base or quote currency.
▶️ Liquidity of All Pools of a Token on Solana
Solana Pool Liquidity Changes
This query retrieves the latest changes to liquidity pools on Solana, including the change amount and the price at which the change happened. This query also uses only the real-time data set.
▶️ Solana Pool Liquidity Changes
All liquidity add instructions track on Solana
Tracks liquidity addition events on Solana DEX pools by monitoring specific instructions.
▶️ All liquidity add instructions track on Solana
CPMM pools created
The mint addresses for the tokens being used in the pool are listed for example tokenMint1 and tokenMint0 , indicating which tokens the CPMM will support.
Get LP Latest liqudity on Solana
Get LP Latest liqudity on Solana. Uses the DEXPools cube. Replace the address in the where clause to use it.
▶️ Get LP Latest liqudity on Solana
Get all the liquidity pools info for a particular token
Will give the information on all the liquidity pools of a particular token EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm.
▶️ Get all the liquidity pools info for a particular token
Liquidity change in recent month
Liquidity change in recent month. Uses the DEXTradeByTokens cube. Needs the historical data add-on — see the comment at the top of the query.
▶️ Liquidity change in recent month
Liquidity lock using instructions balance update
Using the below query, you can retrieve latest liquidity locks made using streamflow.
▶️ Liquidity lock using instructions balance update
Events & Calls
Not Anchor Error Solana Logs
To exclude instructions containing specific log phrases such as 'AnchorError' you can use the notLike filter.
▶️ Not Anchor Error Solana Logs
Solana Zeta Market logs
If you need to filter out the instructions from Solana logs that involve a particular exchange but you don’t have any information, like address and protocol, then you can use the “includes” keyword on Logs.
Pump.fun
First buyers of a token (sniper detection)
The earliest buyers of a token, in time order - snipers are the first rows, buying within seconds of launch at the lowest price. Replace token in the Variables pane.
▶️ First buyers of a token (sniper detection)
Top 10 pump fun tokens by Marketcap change in last 5mins
This query returns the top 10 pump fun tokens by Marketcap change in last 5mins. You can increase the limit to get more tokens.
▶️ Top 10 pump fun tokens by Marketcap change in last 5mins
Top PumpFun Tokens by Marketcap
Top Pump.fun and PumpSwap tokens on Solana over the last hour, ranked by USD volume. Ranked by volume rather than market cap on purpose: Solana market caps in the cube saturate against whatever ceiling you filter on, so sorting by them surfaces tokens with broken supply figures. Supply.MarketCap is still returned for reference. The previous version sorted Solana.DEXTrades by raw buy price over a window 18 months outside that cube's ~12 hour retention and returned USDC as the top Pump.fun token.
▶️ Top PumpFun Tokens by Marketcap
Get Bonding Curve Progress of a Token on Pump Fun
Returns Bonding Curve Percentage of a Token on the Pump Fun.
▶️ Get Bonding Curve Progress of a Token on Pump Fun
ATH Market Cap of Pump Fun Tokens in a Specific Timeframe
Use Bitquery's DEXTradeByTokens with dataset: combined, Trade.PriceInUSD(maximum: Trade_PriceInUSD), and quantile(of: Trade_PriceInUSD, level: 0.98) to get ATH price. Market cap = ATH price × 1 billion (Pump.fun tokens have 1B supply).
▶️ ATH Market Cap of Pump Fun Tokens in a Specific Timeframe
All tokens traded on Pump.fun in the last 1 hour
To get all tokens traded on Pump.fun in the last 1 hour, use a query that filters trades by the Pump.fun protocol and a block time within the past hour.
▶️ All tokens traded on Pump.fun in the last 1 hour
How do I get tokens that reached a specific market cap on Pump.fun?
To find tokens on Pump.fun that have reached a specific market capitalization threshold, you can use the following Bitquery GraphQL example.
▶️ How do I get tokens that reached a specific market cap on Pump.fun?
Latest creator fee transfers on pumpfun amm
Latest creator fee transfers on pumpfun amm. Uses the InstructionBalanceUpdates cube. Replace the address in the where clause to use it.
▶️ Latest creator fee transfers on pumpfun amm
Pumpfun transfers type v1 to pumpfun migrations
Retrieve Pump.fun token migrations on a specific date. The API returns transfers to the PumpSwap migration receiver address for the given date.
▶️ Pumpfun transfers type v1 to pumpfun migrations
Pumpswap latest Trades API
Latest PumpSwap trades from the Trading cube, with USD price and trade size on every row. The Trading cube reaches back about 30 days on Solana; Solana.DEXTrades keeps only about 12 hours.
Top 10 pump fun tokens by Price change in last 5min
Use the below query to get top 10 Pump.fun tokens by price change in the last 5 minutes.
▶️ Top 10 pump fun tokens by Price change in last 5min
Top 100 graduating pump fun tokens in last 5 minutes
We can use below query to get top 100 About to Graduate Pump Fun Tokens. You can run and test the saved query.
▶️ Top 100 graduating pump fun tokens in last 5 minutes
Top traders on pumpswap
Aggregate DEXTradeByTokens by Transaction.Signer with limitBy and orderBy on trade count or volume (USD). Filter Dex.ProgramAddress to PumpSwap and optionally WSOL as the side currency to rank active wallets on the AMM.
All Pump fun tokens created by an address
All Pump fun tokens created by an address. Uses the TokenSupplyUpdates cube. Replace the address in the where clause to use it.
▶️ All Pump fun tokens created by an address
First transfers of a pump fun token
Retrieves the first transfer of a token to each address, providing the timestamp when each address first received the token.
▶️ First transfers of a pump fun token
Meteora
Get the Top Traders of a specific Token on Meteora DAMM v2 DEX
The below query gets the Top Traders of the specified Token on Meteora DAMM v2. This provides insights into the most active traders and their trading patterns.
▶️ Get the Top Traders of a specific Token on Meteora DAMM v2 DEX
Get the Top Traders of a specific Token on Meteora DLMM DEX
The below query gets the Top Traders of the specified Token on Meteora DLMM. This provides insights into the most active traders and their trading patterns.
▶️ Get the Top Traders of a specific Token on Meteora DLMM DEX
Get the Top Traders of a specific Token on Meteora DYN DEX
The below query gets the Top Traders of the specified Token EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v on Meteora DYN.
▶️ Get the Top Traders of a specific Token on Meteora DYN DEX
Meteora DAMM v2 OHLC API
If you want to get OHLC (Open, High, Low, Close) data for any specific currency pair on Meteora DAMM v2, you can use this API. This provides technical analysis data for charting and trading strategies.
Meteora DLMM OHLC API
If you want to get OHLC (Open, High, Low, Close) data for any specific currency pair on Meteora DLMM, you can use this API. This provides technical analysis data for charting and trading strategies.
Meteora DYN OHLC API
If you want to get OHLC data for any specific currency pair on Meteora DYN, you can use this api. Only use.
Volatility of WSOL USDC Pair on AldrinAmm Dex on Solana
Standard deviation of the WSOL/USDC price on AldrinAmm over the last five days. Uses DEXTradeByTokens, which keeps about 7 days, rather than Solana.DEXTrades, which keeps about 12 hours and has no archive. trades is returned alongside the volatility so an empty window reads as 0 trades instead of passing for zero volatility.
▶️ Volatility of WSOL USDC Pair on AldrinAmm Dex on Solana
Volatility of WSOL USDC Pair on Lifinity Dex on Solana
Standard deviation of the WSOL/USDC price on Lifinity over the last five days. This pair is currently inactive on Lifinity, so the query returns 0 trades - change the ProtocolFamily to a busier venue such as Raydium or Meteora to see a live figure. Uses DEXTradeByTokens rather than Solana.DEXTrades, which keeps about 12 hours and has no archive.
▶️ Volatility of WSOL USDC Pair on Lifinity Dex on Solana
Volatility of a Pair on Meteora Dynamic
Standard deviation of the WSOL/USDC price on Meteora over the last five days. The previous version asked Solana.DEXTrades for a two-hour window more than a year old and reported a volatility of 0, which meant no data rather than no movement. trades is returned alongside so an empty window is visible.
▶️ Volatility of a Pair on Meteora Dynamic
Get the Top Traders of a specific Token on Meteora DBC
The below query gets the Top Traders of the specified Token 4kJkgxzuk1gcjsgRSVhdeSiC15ibQLRDKTuqtf2i16Dm on Meteora DBC.
▶️ Get the Top Traders of a specific Token on Meteora DBC
Raydium
Top 100 About to Graduate Raydium Launchpad Tokens
Returns top 100 About to Graduate Raydium Launchpadn Tokens.
▶️ Top 100 About to Graduate Raydium Launchpad Tokens
Historical PumpFun Migrated Token on Raydium and Pumpswap.
Historical PumpFun Migrated Token on Raydium and Pumpswap. Uses the DEXTradeByTokens cube. Adjust the date range in the where clause. Needs the historical data add-on — see the comment at the top of the query.
▶️ Historical PumpFun Migrated Token on Raydium and Pumpswap.
Get Bonding Curve Progress of a Raydium Launchpad Token
Returns Bonding Curve Percentage of a Raydium Launchpad Token.
▶️ Get Bonding Curve Progress of a Raydium Launchpad Token
Latest Price of a Token on Raydium Launchpad
This query returns the latest price of a token on the Raydium launchpad.
▶️ Latest Price of a Token on Raydium Launchpad
Latest Trades for a specific currency on Raydium
This query returns the latest trades for a token on Raydium. You can set the limit here also.
▶️ Latest Trades for a specific currency on Raydium
DecreaseLiquidityV2 latest raydium clmm
DecreaseLiquidityV2 latest raydium clmm. Uses the Instructions cube. Replace the address in the where clause to use it.
▶️ DecreaseLiquidityV2 latest raydium clmm
IncreaseLiquidityV2 latest raydium clmm
IncreaseLiquidityV2 latest raydium clmm. Uses the Instructions cube. Replace the address in the where clause to use it.
▶️ IncreaseLiquidityV2 latest raydium clmm
Live price of token on raydium - updated
You can use the following query to get the latest price of a token on Raydium DEX on Solana.
▶️ Live price of token on raydium - updated
Raydium CLMM Pool Creation
The mint addresses for the tokens being used in the pool are listed for example tokenMint1 could be any newly deployed token and tokenMint0 can be WSOL , indicating which tokens the CLMM pool will support.
Raydium OHLC for specific pair
If you want to get OHLC data for any specific currency pair on Raydium DEX, you can use.
▶️ Raydium OHLC for specific pair
Top Bought Solana Tokens
Will give most bought Solana Tokens on Raydium.
Top sold Solana Tokens
Will give most sold Solana Tokens on Raydium.
LetsBonk.fun
Latest Price of a LetsBonk.fun Token on Launchpad
Provides the most recent price data for a specific LetsBonk.fun token token Mint Address launched on Raydium Launchpad. You can filter by the token’s MintAddress, and the query will return the last recorded trade price.
▶️ Latest Price of a LetsBonk.fun Token on Launchpad
Latest Trades of a letsbonk.fun token on Launchpad
Fetches the most recent trades of a LetsBonk.fun Token token Mint Address on the Raydium Launchpad. Run the query.
▶️ Latest Trades of a letsbonk.fun token on Launchpad
Liquidity for a Letsbonk.fun token pair
Liquidity for a Letsbonk.fun token pair. Uses the DEXPools cube. Replace the address in the where clause to use it.
▶️ Liquidity for a Letsbonk.fun token pair
Ohlc for letsbonk.fun token
Ohlc for letsbonk.fun token. Uses the DEXTradeByTokens cube. Change the token address in the where clause to use it.
▶️ Ohlc for letsbonk.fun token
Pool address for letsbonk.fun token
Pool address for letsbonk.fun token. Uses the DEXTradeByTokens cube. Change the token address in the where clause to use it.
▶️ Pool address for letsbonk.fun token