# DeepNets Token Safety Checker

> DeepNets Token Safety Checker 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).

Checks a Solana token mint address for safety risks, scam signals, and risk indicators.

## Facts

- Endpoint: GET https://api.deepnets.ai/api/token-safety/12C1rSuuBBZqtpZHHLvVGwFLGSajhLuURGt3Z8eFpump
- 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-ad170fee
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5CI6GhdLpqMVV6F3dpd_p

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

Example prompt: Can you check the safety and risk signals for the Solana token with mint address DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263 — I want to know if it's a scam or has any red flags before I buy.

## When to prefer this

Use this endpoint when you need to quickly verify whether a Solana token mint is safe before trading or investing, especially for pump.fun tokens or newly launched tokens where scam risk is high.

## Known failure modes

- Invalid or malformed base58 mint address returns an error
- Unknown or unlisted token mint may return empty or null safety data
- Rate limiting may occur under heavy usage
- Network timeouts if Solana RPC is slow

## How this service works

Checks a token’s safety and risk signals on Solana.

## Output

Returns a token safety assessment including risk signals and safety indicators for the specified Solana token mint address, helping identify potential scams, rug pulls, or other risks.

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