API ReferenceEntity APIGet EntitiesGet Entity by IdVersion: 2.2Get Entity by IdGEThttps://deep-index.moralis.io/api/v2.2/entities/:entityIdRetrieve detailed information about a specific entity by its IDPATH PARAMSentityIdstringrequiredThe ID of the entityResponses200 Returns detailed information about the entityobjectAPI KEYTest Live APINode.jsPythoncURLGoPHPimport Moralis from 'moralis';try { await Moralis.start({ apiKey: "YOUR_API_KEY" }); const response = await Moralis.EvmApi.entities.getEntity({ "entityId": "uniswap" }); console.log(response.raw);} catch (e) { console.error(e);}from moralis import evm_apiapi_key = "YOUR_API_KEY"params = { "entity_id": "uniswap"}result = evm_api.entities.get_entity( api_key=api_key, params=params,)print(result)curl --request GET \ --url 'https://deep-index.moralis.io/api/v2.2/entities/uniswap' \ --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/uniswap" 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/uniswap', [ 'headers' => [ 'Accept' => 'application/json', 'X-API-Key' => 'YOUR_API_KEY', ],]);echo $response->getBody();Response Example200 Returns detailed information about the entity{ "name": "Uniswap", "id": "uniswap", "logo": "https://entities-logos.s3.us-east-1.amazonaws.com/uniswap.png", "bio": "Uniswap is the pioneering Ethereum-powered decentralized exchange (DEX) facilitating the exchange of ERC-20 tokens through liquidity pools.", "description": "", "website": "https://uniswap.org", "twitter": "https://twitter.com/Uniswap", "type": "Decentralized Exchange", "addresses": [ { "address": "0x54f1acac26b10cdffc8a43904713aa0ad67a33f9", "chain": "0x1", "is_multi_chain": "false", "primary_label": "Uniswap: V3 Pool", "additional_labels": [ "" ] } ]}