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
Version: 2.2

Get Entity Categories

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

Get Entity Categories

QUERY PARAMS
limitnumber
The desired page size of the result.
Responses
API KEY
import Moralis from 'moralis';

try {
await Moralis.start({
apiKey: "YOUR_API_KEY"
});

const response = await Moralis.EvmApi.entities.getEntityCategories({});

console.log(response.raw);
} catch (e) {
console.error(e);
}
Response Example
{
"page": 1,
"page_size": 100,
"result": [
{
"name": "Uniswap",
"id": "uniswap",
"total_entities": 100
}
]
}