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

Get Filtered 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 the filtered tokens API, please check out our Filtered Tokens FAQ. For tutorials, please see the Filtered Tokens API tutorials.

POSThttps://deep-index.moralis.io/api/v2.2/discovery/tokens

Returns filtered tokens based on specified metrics and criteria.

BODY PARAM
Request Bodyobjectrequired
The request payload for filtering tokens
Responses
200Returns filtered token data
400Bad Request
404Not Found
429Too Many Requests
500Internal Server Error
API KEY
curl --request POST \
--url 'https://deep-index.moralis.io/api/v2.2/discovery/tokens' \
--header 'accept: application/json' \
--header 'X-API-Key: YOUR_API_KEY' \
--header 'content-type: application/json' \
--data '
{
"chain": "0x1",
"filters": [
{
"metric": "experiencedBuyers",
"timeFrame": "oneMonth",
"gt": "10"
}
],
"sortBy": {
"metric": "experiencedBuyers",
"timeFrame": "oneMonth",
"type": "DESC"
},
"limit": "25"
}
'
Response Example
{
"metadata": {
"tokenAddress": "0x55d398326f99059ff775485246999027b3197955",
"chainId": "0x1",
"name": "Tether USD",
"symbol": "USDT",
"decimals": 18,
"logo": "https://example.com/logo.png",
"blockNumberMinted": 176416,
"usdPrice": 0.9982436729635321,
"security": {
"isOpenSource": true,
"isProxy": "",
"isMintable": true,
"hiddenOwner": "",
"buyTax": "0",
"sellTax": "0",
"cannotBuy": "",
"cannotSellAll": "",
"isHoneyPot": ""
}
}
}