Skip to main content

Don't have an API key yet?

Sign-up to Moralis to get your free API key and start building today.

Get Your Free API Key

Search Tokens Mainnet Only Premium Endpoint

💡Premium Endpoint

To use this API, you will need an API key associated with a Moralis account on the Pro plan or higher.

For FAQs and more information about token search, please check out our Token Search API FAQ.

GEThttps://deep-index.moralis.io/api/v2.2/tokens/search

Search for tokens based on contract address, token name or token symbol. Premium endpoint available as an add-on. Please contact support for access details.

QUERY PARAMS
querystringrequired
Search query - can be token address, token name or token symbol
chainsstring
The chain(s) to query
limitnumber
The desired page size of the result.
isVerifiedContractboolean
Whether the contract is verified
sortBystring
Sort by volume1hDesc, volume24hDesc, liquidityDesc, marketCapDesc
boostVerifiedContractsboolean
True to boost verified contracts
Responses
200Returns search results for tokens
400Bad Request
404Not Found
429Too Many Requests
500Internal Server Error
API KEY
curl --request GET \
--url 'https://deep-index.moralis.io/api/v2.2/tokens/search?query=pepe&chains=eth&limit=25&isVerifiedContract=true&sortBy=volume1hDesc&boostVerifiedContracts=true' \
--header 'accept: application/json' \
--header 'X-API-Key: YOUR_API_KEY'
Response Example
{
"total": 10,
"result": [
{
"tokenAddress": "0x6982508145454ce325ddbe47a25d4ec3d2311933",
"chainId": "0x1",
"name": "Pepe",
"symbol": "PEPE",
"blockNumber": 17046105,
"blockTimestamp": 1681483883,
"usdPrice": 0.000012302426023896,
"marketCap": 5056032434.591353,
"experiencedNetBuyers": {
"oneDay": -34,
"oneWeek": -176
},
"netVolumeUsd": {
"oneDay": -212308.385726963
},
"liquidityChangeUSD": {
"oneDay": -298883.8224104196
},
"usdPricePercentChange": {
"oneDay": -3.7369101031758394
},
"volumeUsd": {
"oneDay": 8575800.708427625
},
"securityScore": 92,
"logo": "https://adds-token-info-29a861f.s3.eu-central-1.amazonaws.com/marketing/evm/0x6982508145454ce325ddbe47a25d4ec3d2311933_icon.png",
"isVerifiedContract": true
}
]
}