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

Fetches comprehensive on-chain and market details for a Solana token by its mint address, with optional historical snapshot support.

## Facts

- Endpoint: GET https://api.deepnets.ai/api/token-details/GcGxTPWXxUyMXjQLcavWV7K7V5Us6FHVpP1AyVQmpump
- Price: $0.15/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-dfb2364c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8sJQm7OfDuLGX-I6Gb98L

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

Example prompt: Can you pull up the full token details for the Solana mint address GcGxTPWXxUyMXjQLcavWV7K7V5Us6FHVpP1AyVQmpump — I want to see its metadata, holder info, and market data?

## When to prefer this

Use this endpoint when you need comprehensive token details for a specific Solana mint address — especially for pump.fun tokens or any SPL token. Prefer this over generic blockchain explorers when you need structured, analysis-ready data including holder breakdowns and optionally historical snapshots, all in a single API call.

## Known failure modes

- Invalid or malformed mint address returns an error response
- Non-existent mint address returns a not-found or empty result
- Payment failure (x402) if USDC balance is insufficient or payment not attached
- Network timeout if Solana RPC is congested
- Historical snapshot timestamp not found returns error or falls back to latest

## How this service works

Fetches detailed information for a Solana token by mint address.

## Output

Returns a structured JSON object containing detailed information about the specified Solana token, including token metadata (name, symbol, decimals), market data, holder analysis, liquidity information, and other on-chain attributes. When an analysis timestamp is provided, returns a historical snapshot of holder distribution at that point in time.

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