Skip to main content
GET
/
entities
/
{entityId}
Get Entity Details By Id
curl --request GET \
  --url https://deep-index.moralis.io/api/v2.2/entities/{entityId} \
  --header 'X-API-Key: <api-key>'
import requests

url = "https://deep-index.moralis.io/api/v2.2/entities/{entityId}"

headers = {"X-API-Key": "<api-key>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};

fetch('https://deep-index.moralis.io/api/v2.2/entities/{entityId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://deep-index.moralis.io/api/v2.2/entities/{entityId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://deep-index.moralis.io/api/v2.2/entities/{entityId}"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("X-API-Key", "<api-key>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://deep-index.moralis.io/api/v2.2/entities/{entityId}")
.header("X-API-Key", "<api-key>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://deep-index.moralis.io/api/v2.2/entities/{entityId}")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'

response = http.request(request)
puts response.read_body
{
  "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",
  "addresses": [
    {
      "address": "0x1f98431c8ad98523631ae4a59f267346ea31f984",
      "chain": "ethereum",
      "is_multi_chain": false,
      "primary_label": "Uniswap",
      "additional_labels": [
        [
          "Uniswap",
          "Uniswap V3"
        ]
      ]
    }
  ]
}

Authorizations

X-API-Key
string
header
default:test
required

Path Parameters

entityId
string
required
Example:

"1"

Response

200 - application/json

Returns the entity.

name
string

The name of the entity

Example:

"Uniswap"

id
string

The id of the entity

Example:

"uniswap"

The logo of the entity

Example:

"https://uniswap.io/favicon.ico"

bio
string

The bio of the entity

Example:

"Uniswap is a decentralized finance protocol that is used to exchange cryptocurrencies."

description
string

The description of the entity

Example:

"Uniswap is a decentralized finance protocol that is used to exchange cryptocurrencies."

website
string

The website of the entity

Example:

"https://uniswap.io"

twitter
string

The twitter of the entity

Example:

"https://twitter.com/uniswap"

type
string

The type of the entity

Example:

"exchange"

addresses
object[]