# DeepNets Token Holder Graph

> DeepNets Token Holder Graph is a paid API for AI agents from api.deepnets.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Returns a holder graph showing wallet relationships and token distribution data for a given Solana token mint address.

## Facts

- Endpoint: GET https://api.deepnets.ai/api/token/DRrcvcWHUNJqRj81LHVKC1wzLiRxyncq7ctiLrfYpump/holder-graph
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-deepnets-ai-dc41cbf4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XROQP1FI_OLlP48v9Lh8L

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 api-deepnets-ai-dc41cbf4
```

Example prompt: Can you pull up the holder graph for the Solana token with mint address DRrcvcWHUNJqRj81LHVKC1wzLiRxyncq7ctiLrfYpump and show me how the wallets are distributed and connected?

## When to prefer this

Use this endpoint when you need to visually or analytically understand the ownership distribution and wallet relationship network of a specific Solana token, especially pump.fun tokens. Prefer this over simple holder-count endpoints when you need graph-level relationship data between wallets, not just a flat list.

## Known failure modes

- Invalid or malformed mint address returns an error
- Token mint not found on Solana returns empty or error response
- Rate limiting may return 429 Too Many Requests
- Payment required (402) if x402 payment not provided
- Newly created token with no holders may return empty graph

## How this service works

Returns a holder graph for a given token, likely showing wallet relationships or distribution data for the specified mint/address.

## Output

A holder graph object showing wallet addresses that hold the specified token, their relationships to one another, distribution data, and network/cluster information among holders.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "mint"
     ],
     "properties": {
      "mint": {
       "type": "string",
       "example": "DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263",
       "description": "Solana token mint address (base58). pump.fun tokens end in \"pump\"."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-deepnets-ai-dc41cbf4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.deepnets.ai](https://www.zero.xyz/host/api.deepnets.ai/llms.txt)
