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

Returns a structured safety and risk analysis for a Solana token mint, including holder concentration, liquidity, authority flags, and overall safety level.

## Facts

- Endpoint: GET https://api.deepnets.ai/api/token-safety/9C2Ex4QM7SKDNDWoE1Fsw18mey8aTTsJqjXNcsivpump
- 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-faa031ee
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7xHJUV5w3ZQFha7UrcLtR

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

Example prompt: Can you check if the Solana token at mint address DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263 is safe — I want to know about holder concentration, liquidity, any authority flags, and the overall safety level before I consider buying.

## When to prefer this

Use this endpoint when you need a comprehensive, structured safety and risk report for a specific Solana token mint, especially for evaluating pump.fun tokens or new meme coins before trading. Prefer this over generic token info endpoints when the primary concern is scam detection, rug pull risk, holder concentration, and authority flag analysis.

## Known failure modes

- Invalid or malformed mint address returns an error or empty result
- Unknown mint address not indexed returns no data
- Rate limiting may return 429 if too many requests
- Network timeout if Solana RPC is slow
- Token with no on-chain history may return incomplete safety data

## How this service works

Checks a Solana token for safety and risk signals before you trade.

## Output

A structured safety report for the queried Solana token mint, including overall safety level classification, holder concentration metrics, liquidity analysis, authority flag statuses (e.g. mint authority, freeze authority), and specific risk signals that indicate scam or rug pull potential.

## 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-faa031ee/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)
