# DeepNets Token Details API

> DeepNets Token Details API 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 metadata and detailed information for a Solana token given its mint address or a historical snapshot timestamp.

## Facts

- Endpoint: GET https://api.deepnets.ai/api/token-details/HDeYvbpk56GpcLn3VeeTexXnddUcwU6enqSUM9Gipump
- 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-44a1cc43
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_v3-X_gs1cwK0Oq2e1ZxvY

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-44a1cc43
```

Example prompt: Can you look up the token details for the Solana mint address HDeYvbpk56GpcLn3VeeTexXnddUcwU6enqSUM9Gipump and tell me its name, symbol, and creator info?

## When to prefer this

Use this endpoint when you need structured metadata and details for a specific Solana token by mint address, especially for pump.fun tokens. Prefer this over generic blockchain explorers when you need programmatic, structured JSON output suitable for agent workflows. Also useful when inspecting historical holder snapshots by providing a Unix timestamp.

## Known failure modes

- Invalid or malformed mint address returns an error response
- Token not found for a valid but unrecognized mint address
- Missing required 'mint' query parameter returns a validation error
- Network or upstream RPC errors causing 5xx responses
- Rate limiting or payment failure causing 402 or 429 responses

## How this service works

Returns metadata and details for a token by address or mint. Intended for token lookup and inspection.

## Output

Returns a JSON object containing metadata and details for the specified Solana token, including name, symbol, supply, creator information, and other on-chain token attributes. Optionally returns a historical holder-analysis snapshot if a Unix timestamp is provided.

## 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-44a1cc43/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)
