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

Returns detailed token information for a given Solana token mint address, including metadata, creator info, and optional historical holder-analysis snapshots.

## Facts

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

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-04a740cd
```

Example prompt: Can you pull up all the details for the Solana token with mint address DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263 — I want to see its metadata and creator info?

## When to prefer this

Use this endpoint when you need comprehensive token-level details for a specific Solana token by mint address, especially when you need metadata, creator info, or historical holder analysis. Prefer this over general safety-check endpoints when the goal is rich informational lookup rather than risk assessment.

## Known failure modes

- Invalid or malformed mint address returns an error
- Token mint address not found on Solana returns 404 or empty result
- Invalid Unix timestamp for historical snapshot returns an error
- Network or API unavailability returns 5xx error
- Missing required 'mint' query parameter returns 400 bad request

## How this service works

Returns detailed token information for a given token address on Solana.

## Output

A JSON object containing detailed information about the specified Solana token, including metadata, creator details, and optionally 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-04a740cd/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)
