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

## Facts

- Endpoint: GET https://api.deepnets.ai/api/token-safety/775QhysSaKvoDr6bDaPsehPUNkPEyu2N2Qp4Hbhopump
- 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-320902a0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZjLhjZIEMsMj2NH9WYOF6

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-320902a0
```

Example prompt: Can you check if the Solana token with mint address DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263 is safe to buy — I want to know if there are any red flags, scam indicators, or rug pull risks?

## When to prefer this

Use this endpoint when you need to quickly assess whether a specific Solana token (especially pump.fun tokens) poses safety risks before trading or investing. Ideal for DeFi agents, trading bots, or wallet apps that need automated scam detection for arbitrary token addresses.

## Known failure modes

- Invalid or malformed mint address returns error
- Token mint not found on Solana returns 404 or empty result
- Payment not processed (x402 payment required) returns 402
- Rate limiting if too many requests in a short window

## How this service works

Analyzes a Solana token for safety risks and red flags.

## Output

A safety report for the queried Solana token mint address, including detected risk flags, scam signals, and red flags that could indicate fraudulent or unsafe token 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-320902a0/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)
