# 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 indicators, returning a structured risk assessment.

## Facts

- Endpoint: GET https://api.deepnets.ai/api/token-safety/KXSSKnz84FtR7wRTAyeDMK1ukjv9ZUf7H32pGjCpump
- 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-2adffa8a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2rnLNwcTrAXfrjMEHz_6X

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-2adffa8a
```

Example prompt: Can you run a safety check on the Solana token with mint address KXSSKnz84FtR7wRTAyeDMK1ukjv9ZUf7H32pGjCpump and tell me if it has any scam or rug-pull risk signals?

## When to prefer this

Use this endpoint when you need a quick, structured risk/safety assessment for a specific Solana token before trading, investing, or integrating it — especially for pump.fun tokens or newly launched mints where rug-pull risk is a concern.

## Known failure modes

- Invalid or malformed mint address returns an error
- Unknown mint address with no on-chain data may return empty or null risk fields
- Rate limiting or payment failure returns 402 or 429 status
- Network timeout if Solana RPC is slow

## How this service works

Checks a Solana token for safety and risk indicators, returning a structured token-risk assessment for the supplied mint address.

## Output

A structured token risk assessment object containing safety scores, risk indicators, and scam signals for the specified Solana token mint address.

## 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-2adffa8a/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)
