API ReferenceEntity APIGet EntitiesGet Entities by CategoryVersion: 2.2Get Entities by CategoryGEThttps://deep-index.moralis.io/api/v2.2/entities/categories/:categoryIdGet Entities By CategoryPATH PARAMScategoryIdstringrequiredQUERY PARAMSlimitnumberThe desired page size of the result.Responses200 Returns the entities belonging to the category.objectAPI KEYTest Live APINode.jsPythoncURLGoPHPimport Moralis from 'moralis';try { await Moralis.start({ apiKey: "YOUR_API_KEY" }); const response = await Moralis.EvmApi.entities.getEntitiesByCategory({ "categoryId": "centralized_exchange" }); console.log(response.raw);} catch (e) { console.error(e);}from moralis import evm_apiapi_key = "YOUR_API_KEY"params = { "category_id": "centralized_exchange"}result = evm_api.entities.get_entities_by_category( api_key=api_key, params=params,)print(result)curl --request GET \ --url 'https://deep-index.moralis.io/api/v2.2/entities/categories/centralized_exchange' \ --header 'accept: application/json' \ --header 'X-API-Key: YOUR_API_KEY' package mainimport ( "fmt" "net/http" "io/ioutil")func main() { url := "https://deep-index.moralis.io/api/v2.2/entities/categories/centralized_exchange" req, _ := http.NewRequest("GET", url, payload) req.Header.Add("Accept", "application/json") req.Header.Add("X-API-Key", "YOUR_API_KEY") res, _ := http.DefaultClient.Do(req) defer res.Body.Close() body, _ := ioutil.ReadAll(res.Body) fmt.Println(res) fmt.Println(string(body))}<?php// Dependencies to install:// $ composer require guzzlehttp/guzzlerequire_once('vendor/autoload.php');$client = new \GuzzleHttp\Client();$response = $client->request('GET', 'https://deep-index.moralis.io/api/v2.2/entities/categories/centralized_exchange', [ 'headers' => [ 'Accept' => 'application/json', 'X-API-Key' => 'YOUR_API_KEY', ],]);echo $response->getBody();Response Example200 Returns the entities belonging to the category.{ "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 } ]}