Search Tokens on Solana
This Solana API is part of our Early Access Program (EAP), which is intended for evaluation purposes. This program allows you to test the data and its integration into your applications before full-scale implementation. Read more here
Search Tokens on Solana
You can search tokens on Solana using names or symbols using our APIs and get prices and other details.
You can find the query here
{
Solana {
DEXTrades(
orderBy: {descending: Block_Time}
limit: {count: 100}
limitBy: {by: Trade_Buy_Currency_MintAddress, count: 1}
where: {Trade: {Buy: {Currency: {Name: {includes: "pe"}}}}}
) {
Trade {
Buy {
Price
PriceInUSD
Currency {
Name
Symbol
MintAddress
}
}
Sell {
Currency {
Name
Symbol
MintAddress
}
}
}
}
}
}