# DeepNets Solana Token Details

> DeepNets Solana Token Details is a paid API for AI agents from api.deepnets.ai, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-15).

Returns comprehensive Solana token information including metadata, creator info, risk assessment, holder distribution, and bundle analysis for a given mint address.

## Facts

- Endpoint: GET https://api.deepnets.ai/api/token-details/Bt2iNFdc44MhRRPr3tan8cvHm8TAk98kBAvR2uNrpump
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-deepnets-ai-f66f45a5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_C2vL4lCr-RwdbJMxyhHjB

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

Example prompt: Give me the full breakdown for Solana token mint DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263 — I want metadata, creator info, risk assessment, holder distribution, and bundle analysis.

## When to prefer this

Use this endpoint when you need a comprehensive, all-in-one profile of a Solana token including risk signals, holder distribution, and bundle analysis — especially for pump.fun tokens or when evaluating token safety before trading or investment decisions.

## Known failure modes

- Invalid or malformed mint address returns error response
- Unknown or unindexed mint address may return empty or partial data
- Network timeout for very new or illiquid tokens
- Invalid timestamp for historical snapshot parameter returns error
- Rate limiting may occur under high request volume

## How this service works

Returns detailed Solana token information for a given mint address, including metadata, creator info, risk assessment, holder distribution, and bundle analysis.

## Output

A structured object containing detailed token metadata (name, symbol, supply), creator and deployer information, risk/safety signals, holder distribution statistics, and bundle analysis data for the specified Solana token 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\"."
      },
      "analysis": {
       "type": "string",
       "example": "1761157858",
       "description": "Unix epoch-second timestamp of a historical holder-analysis snapshot. Omit for the latest."
      }
     }
    }
   },
   "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-f66f45a5/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)
