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

Search Entities

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

Search for entities, addresses and categories

QUERY PARAMS
querystringrequired
The search query
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.searchEntities({
"query": "uniswap"
});

console.log(response.raw);
} catch (e) {
console.error(e);
}
Response Example
{
"page": 1,
"page_size": 100,
"result": [
{
"entities": [
{
"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": "0x54f1acac26b10cdffc8a43904713aa0ad67a33f9",
"chain": "0x1",
"is_multi_chain": "false",
"primary_label": "Uniswap: V3 Pool",
"entity": [
{
"name": "Uniswap",
"id": "uniswap"
}
]
}
]
}
]
}