# 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 token holder graph for a Solana token mint address, including holder nodes, ownership percentages, edges, and metadata about exchanges and funding sources.

## Facts

- Endpoint: GET https://api.deepnets.ai/api/token/FPxmjskjWLPuaXNSiAM1AQB3m1Pbh3Mjj3ZtTpeHpump/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-f17312c9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Xeh2ur4iS7-krK2iMtUzT

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-f17312c9
```

Example prompt: Can you pull the holder graph for the Solana token with mint address FPxmjskjWLPuaXNSiAM1AQB3m1Pbh3Mjj3ZtTpeHpump — I want to see who holds it, the ownership percentages, and any exchange or funding source connections?

## When to prefer this

Use this endpoint when you need a structured graph representation of token holders for a specific Solana mint, especially when you want to understand concentration risk, identify whale wallets, trace funding sources, or see which exchanges hold the token. Particularly useful for pump.fun tokens and other Solana SPL tokens.

## Known failure modes

- Invalid or malformed mint address returns an error
- Mint address not found on-chain returns empty or null graph
- Rate limiting may occur under high request volume
- Network timeout for tokens with very large holder sets

## How this service works

Returns a token holder graph for a given mint address, including holder nodes, ownership percentages, edges, and related metadata such as exchanges and funding sources.

## Output

A graph structure showing token holder nodes with their ownership percentages, edges representing relationships between holders, and metadata identifying associated exchanges and funding sources for the given mint address.

## 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-f17312c9/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)
