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

Returns detailed metadata and on-chain information for a specific Solana token by its mint address.

## Facts

- Endpoint: GET https://api.deepnets.ai/api/token-details/yy11axkPPRrycMJKz1BEtbrjuzR1ZpaiEkuxcpwpump
- 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-ef8ce7bc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ETxbJWO_i7k5VfL1XBp_1

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

Example prompt: Can you pull up the full token details for the Solana mint address DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263 — I want to see its metadata, creator info, and any other on-chain details available?

## When to prefer this

Use this endpoint when you need comprehensive token-level details for a specific Solana mint address, including pump.fun tokens. Prefer this over generic blockchain explorers when you need structured JSON output suitable for programmatic use, or when you want to optionally retrieve historical holder-analysis snapshots by timestamp.

## Known failure modes

- Invalid or malformed mint address returns an error
- Unknown mint address returns empty or not-found response
- Rate limiting or payment failure returns 402 or 429
- Stale or unavailable historical snapshot if timestamp provided is out of range

## How this service works

Returns detailed information for a specific token on Solana.

## Output

A JSON object containing detailed information about the specified Solana token, including metadata such as token name, symbol, creator information, supply details, and other on-chain attributes associated with the 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-ef8ce7bc/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)
