# 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, scam signals, and red flags

## Facts

- Endpoint: GET https://api.deepnets.ai/api/token-safety/BnqntrQFX3CXwXgU5yHrb1teF6mY1CFxWqf5vugSpump
- 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-1b1a1976
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1mng3bZQ1-uYndqyNHOS2

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-1b1a1976
```

Example prompt: Can you check if the Solana token BnqntrQFX3CXwXgU5yHrb1teF6mY1CFxWqf5vugSpump is safe — I want to know if there are any scam signals, suspicious holder concentration, or red flags before I consider buying it.

## When to prefer this

Use this endpoint when you need a quick, automated safety check on a specific Solana token mint address, especially for pump.fun tokens or new memecoins where rug pull risk is high. Prefer this over manual on-chain inspection when you need a structured risk summary without building your own analytics pipeline.

## Known failure modes

- Invalid or malformed mint address returns an error
- Token mint not found on Solana returns no data or 404
- Rate limiting may occur under heavy usage
- Network or RPC timeouts when fetching on-chain data

## How this service works

Analyzes a token for safety risks and potential red flags on Solana.

## Output

A structured safety and risk assessment for the queried Solana token, including potential red flags such as holder concentration, liquidity risks, scam signals, and other safety-related indicators that help determine whether the token poses a 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-1b1a1976/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)
