# DeepNets Solana Token Safety Checker

> DeepNets Solana 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-13).

Checks a Solana token mint address for safety signals, risk flags, and on-chain risk indicators.

## Facts

- Endpoint: GET https://api.deepnets.ai/api/token-safety/FqSxniFXc3AeRAkcs3vvZ62xfKJNcgswDtNnKC3Vpump
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-deepnets-ai-291e763a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HW7Y39Yo4wvVbelwdgean

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-291e763a
```

Example prompt: Can you check if this Solana token is safe to buy? The mint address is FqSxniFXc3AeRAkcs3vvZ62xfKJNcgswDtNnKC3Vpump — I want to know if there are any rug pull signals or suspicious holder patterns.

## When to prefer this

Use this endpoint when you need a quick, per-token safety check for a specific Solana token mint address, especially for pump.fun or other meme tokens, and want risk flags and holder distribution signals before making a trading decision.

## Known failure modes

- Invalid or malformed base58 mint address returns an error
- Unknown or unlisted token may return empty or partial results
- Network issues may cause timeouts or 5xx errors
- Rate limiting may occur under heavy usage

## How this service works

Checks a Solana token address for safety and risk signals.

## Output

A structured token-risk assessment including safety signals, risk flags, holder concentration data, and creator history 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-291e763a/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)
