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

Analyzes a Solana token mint address for safety risks, scam signals, and potential red flags.

## Facts

- Endpoint: GET https://api.deepnets.ai/api/token-safety/aRFaS7ezUchB953op97WSjFmX7qgDwH85zwYX2Ppump
- 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-9d236d96
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZoYC8rZ64Xm-1Pz8XZdMk

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-9d236d96
```

Example prompt: Can you check if the Solana token at mint address DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263 is safe — specifically whether it has any red flags or scam signals I should know about before buying?

## When to prefer this

Use this endpoint when you need a quick, automated safety check on a specific Solana token mint address before trading or investing, especially for pump.fun tokens or newly launched tokens where scam risk is high. Prefer this over manual on-chain lookups when you need structured risk signals and red flag detection in a single call.

## Known failure modes

- Invalid or malformed mint address returns an error response
- Token not found on-chain returns empty or null result
- Rate limiting may throttle repeated requests
- Network issues with Solana RPC may cause timeouts
- Very new tokens with no on-chain history may have limited data

## How this service works

Analyzes a token address for safety risks and potential red flags.

## Output

Returns a token safety assessment for the given Solana mint address, including identified risk signals, red flags, scam indicators, and an overall safety evaluation to help determine whether the token poses risks such as rug pulls, honeypots, or fraudulent activity.

## 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-9d236d96/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)
