# 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 safety assessment indicating whether the token appears risky or suspicious.

## Facts

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

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

Example prompt: Can you run a safety check on the Solana token with mint address DJt2C4xcGd75q7wCEMEi5DpFUqbqLdgk8HQwFMHxbonk and tell me if it looks risky or suspicious?

## When to prefer this

Use this endpoint when you need a quick safety signal check on a specific Solana token before trading, investing, or interacting with it. Particularly useful for evaluating pump.fun tokens or newly launched tokens where rug pull risk is a concern. Prefer this over manual research when you need programmatic, automated risk assessment for one token at a time.

## Known failure modes

- Invalid or malformed mint address returns an error
- Token mint not found on Solana blockchain returns empty or error response
- Rate limiting may occur under high request volume
- Payment failure if USDC balance insufficient for $0.01 fee

## How this service works

Checks a token address for safety-related signals and returns a token safety assessment. Intended to help users evaluate whether a token appears risky or suspicious.

## Output

Returns a token safety assessment containing risk signals and indicators that suggest whether the token is safe or potentially suspicious/scammy, helping users make informed decisions before interacting with the token.

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