# 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 including liquidity, holder concentration, creator history, and token authority status, returning a structured risk assessment.

## Facts

- Endpoint: GET https://api.deepnets.ai/api/token-safety/2pFFgMtw7GkE6Kr6Xpg81mqDvEihhoafg64HdheKpump
- 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-7e456e3c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TyuHQgXMBIk1I1Nv56zb0

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

Example prompt: Can you run a full safety check on the Solana token with mint address 2pFFgMtw7GkE6Kr6Xpg81mqDvEihhoafg64HdheKpump — I want to know its rug pull risk, holder concentration, liquidity, and whether the creator has a sketchy history before I buy in.

## When to prefer this

Use this endpoint when you need a comprehensive, structured token safety report for a specific Solana token mint, especially for pump.fun tokens or newly launched tokens where rug pull and scam risk is highest. Prefer this over generic token info endpoints when the primary concern is risk assessment, holder concentration, and creator reputation rather than price or market data.

## Known failure modes

- Invalid or malformed mint address returns an error response
- Token mint not found on-chain returns a 404 or empty result
- Rate limiting may occur under high request volume
- Very new tokens may have insufficient on-chain data for full analysis
- Network or RPC timeouts may cause delayed or failed responses

## How this service works

Analyzes a Solana token mint for safety risk, liquidity, holder concentration, creator history, and token authority status. Returns a structured risk assessment with supporting metadata and holder/liquidity breakdowns.

## Output

Returns a structured risk assessment including a safety score, holder distribution breakdown, liquidity analysis, creator/dev wallet history, token authority flags (mint authority, freeze authority), and supporting metadata to help assess scam or rug pull risk.

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