evm_getentitiesbycategory
Retrieve blockchain entities by category, including details like name, logo, description, external links, and total addresses, using the Moralis MCP Server API.
Instructions
Fetch entities belonging to a specific category. Each entity returns name, logo, description, external links, total addresses and more.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
categoryId | Yes | The category Id | |
limit | No | The desired page size of the result. |
Input Schema (JSON Schema)
{
"properties": {
"categoryId": {
"description": "The category Id",
"type": "string"
},
"limit": {
"description": "The desired page size of the result.",
"minimum": 0,
"type": "number"
}
},
"required": [
"categoryId"
],
"type": "object"
}