# DeepNets Token Safety Analyzer

> DeepNets Token Safety Analyzer is a paid API for AI agents from api.deepnets.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Analyzes a Solana token mint address for safety risks, liquidity, holder concentration, and rug-pull indicators, returning an overall safety level and detailed risk signals.

## Facts

- Endpoint: GET https://api.deepnets.ai/api/token-safety/5xNDftGCewCcWDXLbmqvotvkLbk6edqeQgm4bpXvpump
- Price: $0.01/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-7606bf41
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2RGsXo_yNUtG-2VBK7AJS

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-7606bf41
```

Example prompt: Can you check if the Solana token with mint address DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263 is safe — I want to know the rug-risk level, liquidity, and whether holders are too concentrated before I buy.

## When to prefer this

Use this endpoint when you need a comprehensive, multi-dimensional safety assessment of a Solana token mint — especially for pump.fun or meme coins — covering rug-risk, liquidity, and holder concentration in a single call. Prefer this over generic token info endpoints when safety and risk analysis is the primary concern.

## Known failure modes

- Invalid or malformed mint address returns an error response
- Unknown or very new token may have insufficient data for full analysis
- Rate limiting may occur under high traffic
- Network or RPC issues on the Solana side may cause timeouts

## How this service works

Analyzes a Solana token mint for safety, liquidity, holder concentration, and rug-risk indicators. Returns an overall safety level along with detailed metadata and risk signals.

## Output

Returns an overall safety level (e.g. safe, risky, dangerous) along with detailed metadata including liquidity metrics, holder concentration statistics, rug-pull risk indicators, and other on-chain risk signals for the queried Solana token mint.

## 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-7606bf41/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)
