# 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 and risk indicators including liquidity, holder concentration, mint/freeze authority status, metadata, and creator risk signals.

## Facts

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

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-3fb65d81
```

Example prompt: Can you check whether the Solana token with mint address 9nRxoHaraaJaPtw4bvQnRB49CEtsPw9TqHbYmgkWpump is safe — I want to know about holder concentration, whether the mint authority is renounced, any freeze authority risks, and any red flags about the creator wallet?

## When to prefer this

Use this endpoint when you need a comprehensive, multi-dimensional safety analysis of a specific Solana token mint before trading or investing. Prefer this over basic token info endpoints when you specifically need risk signals such as mint/freeze authority status, holder concentration, creator history, and liquidity depth all in one call. Especially useful for evaluating pump.fun tokens or new memecoins.

## Known failure modes

- Invalid or malformed mint address returns 400 error
- Unknown or unlaunched mint address returns empty or error response
- Rate limiting may apply returning 429
- Network or RPC issues causing 500 errors
- Newly created tokens may have incomplete data

## How this service works

Analyzes a Solana token mint for safety and risk indicators, including liquidity, holder concentration, mint/freeze authority status, metadata, and creator risk signals.

## Output

Returns a structured safety and risk assessment for the given Solana token mint, including holder concentration metrics, liquidity analysis, mint authority and freeze authority status, token metadata validity, and creator/deployer risk signals — helping determine if the token is a potential rug pull or scam.

## 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-3fb65d81/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)
