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

Returns detailed on-chain token intelligence for a Solana mint address, including metadata, safety/risk signals, holder distribution, and ownership analysis.

## Facts

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

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

Example prompt: Can you pull the full on-chain token intelligence for mint address J6eabrRkNdU6UqAjccGzVEXwvrRQKyQDUJWCmwYcdray — I need the metadata, safety and risk signals, holder distribution, and ownership concentration so I can do proper due diligence before buying?

## When to prefer this

Use this endpoint when you need comprehensive token intelligence in a single call — combining metadata, safety signals, holder distribution, and ownership analysis for a specific Solana mint address. Prefer this over narrower endpoints when performing full token due diligence or wallet concentration checks rather than just a quick safety scan.

## Known failure modes

- Invalid or malformed mint address returns 400 error
- Unknown mint address not found on-chain returns 404 or empty result
- Payment not fulfilled triggers 402 Payment Required
- Rate limiting may temporarily block requests
- Network or RPC issues may cause intermittent 500 errors

## How this service works

Returns detailed on-chain token intelligence for a given mint address, including metadata, safety/risk signals, holder distribution, and ownership analysis. Useful for token due diligence and wallet concentration checks.

## Output

A structured JSON object containing token metadata (name, symbol, decimals), safety and risk signals (scam indicators, contract flags), holder distribution statistics, and ownership/concentration analysis for the given Solana mint address.

## 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\"."
      }
     }
    }
   },
   "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-f8f77dc9/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)
