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

Fetches detailed metadata and information for a Solana token given its mint address, with optional historical holder-analysis snapshot support.

## Facts

- Endpoint: GET https://api.deepnets.ai/api/token-details/CCUXUkyTKdSZxBrysmWvGavegnMoMdwqCBAwypVXpump
- 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-790f4ec9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qXVK-x721Ww4hea4jhUD2

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-790f4ec9
```

Example prompt: Can you pull up the full token details for the Solana mint address CCUXUkyTKdSZxBrysmWvGavegnMoMdwqCBAwypVXpump — I want to see its metadata and creator info.

## When to prefer this

Use this endpoint when you need comprehensive token metadata and details for a specific Solana token mint address, especially for pump.fun tokens or when you need historical holder snapshots. Prefer this over generic blockchain explorers when you need structured, machine-readable token data for agent workflows.

## Known failure modes

- Invalid or malformed mint address returns an error
- Mint address not found on-chain returns empty or 404 response
- Invalid Unix timestamp for historical snapshot returns error
- Payment not provided or insufficient funds returns 402
- Rate limiting or quota exceeded returns 429

## How this service works

Fetches detailed information for a Solana token by mint address.

## Output

Returns a structured object with detailed information about the specified Solana token, including metadata, creator information, and optionally historical holder-analysis data from a given timestamp snapshot.

## 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-790f4ec9/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)
