# 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 detailed metadata and on-chain information for a Solana token by its mint address

## Facts

- Endpoint: GET https://api.deepnets.ai/api/token-details/F1X4wo8xkheF27VVLFWiG4JNicAchGDRqMp7p5wdpump
- 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-3c9ab7f7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_r8Oj5qTu74IbLE-xX2oBl

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-3c9ab7f7
```

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

## When to prefer this

Use this endpoint when you need structured metadata about a specific Solana token by its mint address, especially pump.fun tokens. Prefer this over general-purpose blockchain explorers when you need a machine-readable JSON response suitable for agent workflows. Choose this when you need creator info, historical holder snapshots, or detailed token metadata in a single call.

## Known failure modes

- Invalid or malformed mint address returns an error response
- Token mint not found in the database returns empty or 404 response
- Invalid analysis timestamp returns error or falls back to latest snapshot
- Network timeout for slow RPC lookups
- Payment failure (x402) if USDC balance is insufficient

## How this service works

Returns details and metadata for a token by mint/address. Intended to provide token-specific information in a machine-readable JSON response.

## Output

A JSON object containing detailed metadata for the specified Solana token, including token name, symbol, creator/deployer information, on-chain metadata, and other token-specific attributes. Optionally returns a historical holder-analysis snapshot if a 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-3c9ab7f7/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)
