Skip to main content
GET
/
v2
/
entities
Search Entity Details
curl --request GET \
  --url https://api.range.org/v2/entities \
  --header 'X-API-KEY: <api-key>'
{
  "items": [
    {
      "id": "dao-alpha",
      "name": "DAO Alpha",
      "icon_url": "https://cdn.example.com/icons/dao-alpha.png"
    }
  ],
  "meta": {
    "next_cursor": "eyJpZCI6IjkxeFFlV3Z...",
    "previous_cursor": "eyJpZCI6IjkxeFFlV3Z...",
    "first_page_cursor": "eyJpZCI6IjkxeFFlV3Z...",
    "last_page_cursor": "eyJpZCI6IjkxeFFlV3Z...",
    "total_count": 100,
    "page_number": 1
  }
}

Authorizations

X-API-KEY
string
header
required

Authorization method required to allow user to access the api endpoints.

Query Parameters

cursor
string
Example:

"n0192376853"

size
number
default:10
Required range: 1 <= x <= 100
Example:

10

networks
string[]

Comma-separated list of blockchain networks to filter by (e.g., ethereum, solana). Repeats also allowed.

Example:
["ethereum", "solana"]

Response

200 - application/json

List of entities that match the specified search term.

items
object[]
required
meta
object
required