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

Fetches comprehensive metadata and on-chain information for a Solana token identified by its mint address.

## Facts

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

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

Example prompt: Can you pull up the full token details for the Solana mint address 6USupFAJJp6Zb9n52DxvRhhU2Mi8LcG2RwkFpXnLpump — I want to see its metadata, creator info, and any other on-chain details available?

## When to prefer this

Use this endpoint when you need detailed token metadata and on-chain information for a specific Solana token, especially pump.fun tokens, and want structured results including creator and supply details. Prefer this over safety/risk analysis endpoints when the goal is general token info rather than risk assessment.

## Known failure modes

- Invalid or malformed mint address returns an error
- Unknown mint address not found on-chain returns 404 or empty result
- Historical snapshot timestamp too old or unavailable returns no data
- Network or RPC issues may cause intermittent failures
- Payment not processed (x402 payment required) results in 402 error

## How this service works

Fetch detailed information for a Solana token by mint address.

## Output

Returns a structured object containing detailed information about the Solana token associated with the given mint address, including metadata, creator details, supply information, and other on-chain attributes. Optionally returns a historical 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-7dfe878d/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)
