# 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 comprehensive on-chain details for a specific Solana token by its mint address, optionally at a historical snapshot.

## Facts

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

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

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

## When to prefer this

Use this endpoint when you need detailed information about a specific Solana token by its mint address, particularly for pump.fun tokens or any SPL token. It supports optional historical snapshots via a Unix timestamp, making it useful for time-series analysis. Prefer this over safety/risk-check siblings when you want full token details rather than a focused risk report.

## Known failure modes

- Invalid or malformed mint address returns an error response
- Token mint address not found on Solana returns empty or error result
- Missing required mint query parameter causes request failure
- Historical timestamp (analysis param) out of range or not available returns error or empty snapshot
- Network or upstream RPC node issues causing timeout or degraded data

## How this service works

Fetches detailed information for a specific token on Solana.

## Output

Returns a detailed JSON object describing the Solana token associated with the provided mint address, including token metadata, holder distribution data, and related on-chain analytics. If an analysis timestamp is provided, returns a historical snapshot of the token's data 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-bd642b61/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)
