# DeepNets Token Details

> DeepNets 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 metadata and token-specific information for a Solana token given its mint address.

## Facts

- Endpoint: GET https://api.deepnets.ai/api/token-details/6pSpMXeNRrRvjqiWz5fenRUajS6GfCiJn48i4o49pump
- 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-d007af20
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iACzJCKnvaApmhh-MsNfF

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

Example prompt: Can you pull the full token details for the Solana mint address 6pSpMXeNRrRvjqiWz5fenRUajS6GfCiJn48i4o49pump and tell me its metadata and creator info?

## When to prefer this

Use this endpoint when you need comprehensive metadata and token details for a specific Solana token identified by its mint address, especially for pump.fun tokens. Prefer this over safety-check or holder-graph endpoints when the primary need is token identity and metadata rather than risk analysis or distribution data.

## Known failure modes

- Invalid or malformed mint address returns an error response
- Unknown mint address returns empty or not-found result
- Rate limiting may restrict frequent consecutive calls
- Missing required 'mint' query parameter causes a 400-level error
- Network timeout if Solana RPC or indexer is unavailable

## How this service works

Returns detailed information for a token given its Solana mint address, including metadata and other token-specific details.

## Output

Returns a detailed JSON object containing metadata and token-specific information for the specified Solana mint address, such as name, symbol, creator details, and other on-chain token attributes. Optionally includes 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-d007af20/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)
