πEntity Name Search
Use this endpoint to find correct entity name format to use in Supported Profiler Endpoints (Consumes 0 Credits)
Search for entity names to use in other v1 endpoints that support entity_name parameters.
This endpoint helps users find the correct entity name format when they want to query by entity instead of address. Many endpoints accept either address or entity_name as parameters, but entity names must match exactly. This search endpoint makes it easy to find the right entity name.
Key Features:
- Case-insensitive search that matches anywhere in the entity name 
- Returns up to 100 results ordered alphabetically 
- Minimum 2 character search query required 
- Free endpoint (0 credits) 
Use Cases:
- Find entity names for profiler endpoints: Search "vitalik" to find "Vitalik Buterin" for use in address balance or transaction queries 
- Discover exchange entities: Search "binance" to find all Binance-related entities 
- Locate fund entities: Search "jump" to find "Jump Trading" and related entities 
Example Usage:
{
  "search_query": "vitalik"
}Response:
{
  "data": [
    {"entity_name": "Vitalik Buterin"},
    {"entity_name": "Vitalik Buterin: Charity"}
  ]
}Note: This endpoint does not support pagination as results are capped at 100 items.
Request model for entity name search endpoint.
This endpoint helps users find the correct entity_name to use in other v1 endpoints that accept entity_name as a parameter.
Search query for entity names (minimum 2 characters). Search is case-insensitive and matches anywhere in the entity name.
vitalikList of matching entity names
Bad Request
Unauthorized
Forbidden
Not Found
Unprocessable Content
Too Many Requests
Internal Server Error
POST /api/v1/search/entity-name HTTP/1.1
Host: api.nansen.ai
apiKey: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 26
{
  "search_query": "vitalik"
}{
  "data": [
    {
      "entity_name": "text"
    }
  ]
}Last updated
Was this helpful?
