# 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 information for a Solana token given its mint address, with optional historical snapshot support.

## Facts

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

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-1978df95
```

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

## When to prefer this

Use this endpoint when you need comprehensive token metadata and details for a specific Solana token by its mint address, especially for pump.fun tokens. It supports historical snapshots, making it suitable for time-series analysis of token holder states. Prefer this over safety/risk endpoints when you need raw token information rather than a risk assessment.

## Known failure modes

- Invalid or malformed mint address returns an error
- Mint address not found on-chain returns empty or 404-style response
- Historical snapshot timestamp too old or unavailable returns no data
- Payment failure (x402) if USDC balance is insufficient
- Rate limiting if too many requests are made in a short window

## How this service works

Returns detailed information for a Solana token by mint address.

## Output

Detailed token information object for the specified Solana mint address, including metadata such as name, symbol, creator info, supply details, and potentially holder data. Supports optional historical holder-analysis snapshots via a Unix timestamp parameter.

## 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-1978df95/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)
