# DeepNets Token Safety Check

> DeepNets Token Safety Check 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-related risk signals and returns a token safety assessment.

## Facts

- Endpoint: GET https://api.deepnets.ai/api/token-safety/8qmeAmHRDLhfbQ8sibJSnLnqDB3pzD26MUEsESFPpump
- 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-be27eeb1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7pwwFYiqxqWEMpIl7rl0m

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

Example prompt: Can you check whether the Solana token with mint address 8qmeAmHRDLhfbQ8sibJSnLnqDB3pzD26MUEsESFPpump is safe to trade — I want to know if it has any scam or rug pull risk signals before I buy.

## When to prefer this

Use this endpoint when you need a quick, cheap ($0.01 USDC) safety check on a specific Solana token mint before trading or integrating it, especially for pump.fun tokens or newly created mints where rug pull risk is a concern.

## Known failure modes

- Invalid or malformed mint address returns an error response
- Unknown or unlisted token may return limited signals
- Rate limiting may cause temporary unavailability
- Network or upstream data issues may cause incomplete risk data

## How this service works

Checks a Solana token mint for safety-related risk signals and returns a token safety assessment. Intended for quick validation of token addresses before trading or integration.

## Output

A token safety assessment for the given Solana mint address, including risk signals, safety indicators, and whether the token appears safe or suspicious for trading or integration.

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