# DYOR Network Entity Explorer

> DYOR Network Entity Explorer is a paid API for AI agents from api.dyor.network, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Returns structured profile data for a named crypto entity, including investors, blockchains, team members, and labels

## Facts

- Endpoint: GET https://api.dyor.network/api/explore
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/dyor-network-entity-explorer-dcb7bd27
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Z4_BKwq_4E6UqOVEZIIei

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability dyor-network-entity-explorer-dcb7bd27
```

Example prompt: Can you pull up the full entity profile for Uniswap on DYOR Network — I want to see its investors, team members, blockchains it runs on, and how it's categorized?

## When to prefer this

Use this endpoint when you need a structured, comprehensive profile of a specific known crypto entity — including its investors, team, blockchain deployments, and classification labels. Prefer this over semantic search or SPARQL when you already have the exact entity name and want all its metadata in one call.

## Known failure modes

- Unknown entity name returns empty or null result — use /api/search first to find the canonical entity name
- Misspelled or ambiguous entity name may return wrong entity data
- Rate limiting or payment failure returns 402 Payment Required
- Missing entity_name query parameter returns validation error

## How this service works

Entity explorer via GET — pass ?entity_name=... parameter | ZWING Intelligence (https://zwing.finance) — contact: v@zwing.finance, Telegram: @valery_zzz

## Output

A structured JSON object containing the entity's name, list of investors, supported blockchains, team members, and entity labels/categories as arrays

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "entity_name"
     ],
     "properties": {
      "entity_name": {
       "type": "string",
       "description": "Entity name (use /api/search to find exact names)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "investors": {
       "type": "array"
      },
      "blockchains": {
       "type": "array"
      },
      "entity_name": {
       "type": "string"
      },
      "team_members": {
       "type": "array"
      },
      "entity_labels": {
       "type": "array",
       "items": {
        "type": "string"
       }
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/dyor-network-entity-explorer-dcb7bd27/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.dyor.network](https://www.zero.xyz/host/api.dyor.network/llms.txt)
