# 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 the safety and risk status of a Solana token mint address, returning token-risk assessment signals.

## Facts

- Endpoint: GET https://api.deepnets.ai/api/token-safety/HcbsqQC3sn2LMwbjVafiEd8nJ2ATZHH2wXH4xqV2pump
- 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-9ee2e106
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IxA6YUBUnk7yNTLGV5zG7

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

Example prompt: Can you check whether the Solana token with mint address HcbsqQC3sn2LMwbjVafiEd8nJ2ATZHH2wXH4xqV2pump is safe to buy, and tell me what risk signals DeepNets flagged for it?

## When to prefer this

Use this endpoint when you need a quick, lightweight safety check on a specific Solana token mint address before trading or recommending it, especially for pump.fun tokens. Prefer this over broader token info endpoints when the primary concern is risk and scam detection rather than price or metadata.

## Known failure modes

- Invalid or malformed base58 mint address returns an error response
- Unknown or unlisted mint address may return no data or empty risk signals
- Rate limiting or payment failure results in 402 or 429 response
- Network timeout if the token data source is temporarily unavailable

## How this service works

Checks the safety status of a token mint and returns token-risk information via a simple GET request.

## Output

Returns a token safety assessment including risk signals and safety status for the given Solana mint address, indicating whether the token exhibits scam, rug-pull, or other risk patterns.

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