v1

latestOpenAPI 3.0.02026-07-26117198177.4 KB
Entity Information

Search Entity Details

Returns a list of entities that match the specified search term.

get/v2/entities

Query parameters

cursorstring
Example:n0192376853
sizenumber
Example:10
networksstring[]

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

[
  "ethereum",
  "solana"
]

Response

List of entities that match the specified search term.

Example response

{
  "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
  }
}