# DeepNets Solana Token Details & On-Chain Risk Analysis

> DeepNets Solana Token Details & On-Chain Risk Analysis 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 Solana token metadata, creator info, safety flags, ownership concentration, and holder breakdown for a given mint address.

## Facts

- Endpoint: GET https://api.deepnets.ai/api/token-details/8rcd6iUncawJhJeSfgyF2uBKDuiecFa6SYD3yQ5pump
- 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-5640b9d1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uGpeb7ugBwNxAQbrWZKfU

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-5640b9d1
```

Example prompt: Can you pull the full token details and on-chain risk analysis for the Solana mint address 8rcd6iUncawJhJeSfgyF2uBKDuiecFa6SYD3yQ5pump — I want to see the creator info, safety flags, and holder concentration breakdown.

## When to prefer this

Use this endpoint when you need comprehensive on-chain analysis of a specific Solana token in a single call — combining metadata, creator attribution, safety risk flags, and holder distribution. Prefer this over lighter token-info endpoints when rug-pull risk assessment or insider/whale concentration analysis is required.

## Known failure modes

- Invalid or malformed mint address returns an error response
- Unknown or very new mint address may return empty or partial data
- Historical snapshot timestamp not found returns no data for that period
- Rate limiting or payment failure (x402) prevents response
- Network or RPC issues may cause timeouts

## How this service works

Returns detailed Solana token metadata and on-chain risk/holder analysis for a given mint address, including creator, safety flags, ownership concentration, and holder breakdown.

## Output

Returns a JSON object with detailed Solana token metadata including the creator, safety flags, ownership concentration metrics, and a full breakdown of top holders and their share of supply.

## 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-5640b9d1/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)
