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

Checks a Solana token mint address for safety risks and scam signals, returning a risk assessment for the token.

## Facts

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

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-381ed83d
```

Example prompt: Can you check if the Solana token FdoRs35DraYyxBcHH5WdxDZ9pUQmbiaac5gyHUDhpump is safe — I want to know if there are any rug pull or scam risk signals before I buy.

## When to prefer this

Use this endpoint when you need a quick, per-token safety and risk assessment for a Solana token mint address — especially for pump.fun tokens or unknown meme coins before trading. Prefer this over general token info endpoints when the primary concern is scam detection or rug-pull risk.

## Known failure modes

- Invalid or malformed mint address returns an error
- Unknown or newly created token may return limited data
- Network or provider downtime returns 5xx error
- Payment failure (x402) if USDC balance is insufficient

## How this service works

Checks a token mint for safety and risk signals, returning a token-safety assessment for the provided address.

## Output

A token-safety assessment for the provided Solana mint address, including risk signals and indicators of potential scam, rug pull, or unsafe characteristics associated with that token.

## 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-381ed83d/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)
