# 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-14).

Returns a graph of token holder distribution and relationships for a specified Solana token mint address.

## Facts

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

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-589e1c8c
```

Example prompt: Can you pull up the holder graph for the Solana token with mint address DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263 and show me how the ownership is distributed among holders?

## When to prefer this

Use this endpoint when you need to visualize or analyze the distribution and relational network of token holders for a specific Solana token, especially pump.fun tokens. Prefer this over basic token info endpoints when you specifically need holder concentration or ownership graph data rather than price or metadata.

## Known failure modes

- Invalid or malformed mint address returns an error
- Non-existent token mint returns empty or error response
- Rate limiting may occur under high load
- Network timeout for tokens with extremely large holder counts
- Pump.fun tokens that haven't launched yet may return incomplete data

## How this service works

Returns a holder graph for a specified token, showing distribution and relationships among token holders.

## Output

A holder graph object showing the distribution and relationships among holders of the specified Solana token, including ownership concentration data and network of holder relationships.

## 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-589e1c8c/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)
