# 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 rug-risk indicators, liquidity status, holder concentration, and authority flags, returning a structured safety risk summary.

## Facts

- Endpoint: GET https://api.deepnets.ai/api/token-safety/5NjT5AbxWbiCMFPVH7Spyt8Kyt6VDKKYW37khQ9Cpump
- 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-fbc6511d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EdoAOj3-WRmxFN-fWXElm

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

Example prompt: Can you check if the Solana token with mint address 5NjT5AbxWbiCMFPVH7Spyt8Kyt6VDKKYW37khQ9Cpump is safe to buy — I want to know about rug risk, liquidity status, holder concentration, and any suspicious authority flags.

## When to prefer this

Use this endpoint when you need a quick, structured safety assessment of a specific Solana token mint before trading or investing, especially for pump.fun tokens or newly launched tokens with unknown risk profiles. Prefer this over generic token info endpoints when the primary concern is fraud detection, rug-pull risk, or authority flag analysis.

## Known failure modes

- Invalid or malformed mint address returns an error response
- Unknown or very new token with insufficient on-chain data may return incomplete signals
- Rate limiting may occur under high request volume
- Pump.fun tokens that have not yet launched may lack liquidity data

## How this service works

Analyzes a Solana token mint for safety signals, including liquidity status, holder concentration, authority flags, and rug-risk indicators. Returns a structured risk summary and token metadata for the specified mint.

## Output

A structured risk summary including liquidity status (locked/unlocked), holder concentration metrics, authority flag analysis (mint authority, freeze authority), rug-risk indicators, and token metadata such as name, symbol, and creator info for the specified 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-fbc6511d/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)
