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 Entities by Category 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.

GEThttps://deep-index.moralis.io/api/v2.2/entities/categories/:categoryId

Get Entities By Category

PATH PARAMS
categoryIdstringrequired
QUERY PARAMS
limitnumber
The desired page size of the result.
Responses
200Returns the entities belonging to the category.
400Bad Request
404Not Found
429Too Many Requests
500Internal Server Error
API KEY
curl --request GET \
--url 'https://deep-index.moralis.io/api/v2.2/entities/categories/centralized_exchange?limit=25' \
--header 'accept: application/json' \
--header 'X-API-Key: YOUR_API_KEY'
Response Example
{
"page": 1,
"page_size": 100,
"result": [
{
"name": "Uniswap",
"id": "uniswap",
"logo": "https://uniswap.io/favicon.ico",
"bio": "Uniswap is a decentralized finance protocol that is used to exchange cryptocurrencies.",
"description": "Uniswap is a decentralized finance protocol that is used to exchange cryptocurrencies.",
"website": "https://uniswap.io",
"twitter": "https://twitter.com/uniswap",
"type": "exchange",
"total_addresses": 100
}
]
}