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

Analyzes a Solana token mint address and returns a structured safety report including risk level, holder distribution, liquidity status, token authorities, and metadata.

## Facts

- Endpoint: GET https://api.deepnets.ai/api/token-safety/44WLEAGQu5UTeobbHsNMzXZ4noaRjBZLSDzh6b96pump
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-deepnets-ai-0d00edc1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rhSyRVnnWQGkJ0Q2lceuu

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-0d00edc1
```

Example prompt: Can you run a safety check on the Solana token with mint address 44WLEAGQu5UTeobbHsNMzXZ4noaRjBZLSDzh6b96pump and tell me the overall risk level, who holds it, and whether the liquidity looks healthy?

## When to prefer this

Use this endpoint when you need a comprehensive, structured safety assessment for a specific Solana token mint address — especially before trading, when evaluating pump.fun tokens, or when you need to check holder concentration, liquidity, and authority status in a single call. Prefer over generic token info endpoints when safety risk scoring is the primary concern.

## Known failure modes

- Invalid or malformed mint address returns an error response
- Non-existent token mint address may return empty or error result
- Rate limiting or quota exceeded may return 429
- Token with no on-chain data may return incomplete report
- Network or RPC issues may cause timeout or 5xx error

## How this service works

Analyzes a token mint address and returns a structured safety report including overall risk level, holder distribution, liquidity status, token authorities, and metadata.

## Output

A structured safety report containing: overall risk level classification, holder distribution (concentration metrics), liquidity status, token authority information (mint/freeze authority), and token metadata — enabling an agent to assess whether a token is safe to trade or likely a scam/rug pull.

## 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-0d00edc1/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)
