# 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-15).

Analyzes a Solana token mint address for safety risks, scam signals, and risk indicators, returning a structured safety assessment.

## Facts

- Endpoint: GET https://api.deepnets.ai/api/token-safety/47bTjYA4nTXHH5yVj2CKvuhK7SkVh7U1UP2qwYVLpump
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-deepnets-ai-858c626c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tBCZhjp2WubfvZxUH1BaY

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-858c626c
```

Example prompt: Can you check whether the Solana token with mint address 47bTjYA4nTXHH5yVj2CKvuhK7SkVh7U1UP2qwYVLpump is safe to buy, and tell me what risk signals or scam indicators DeepNets finds for it?

## When to prefer this

Use this endpoint when you need to evaluate the safety of a specific Solana token mint address before trading or investing, especially for pump.fun tokens or unknown meme coins. Prefer this over generic blockchain explorers when you specifically need risk and scam signal analysis rather than raw on-chain data.

## Known failure modes

- Invalid or malformed mint address returns an error
- Unknown or newly created token may have insufficient data for a full assessment
- Rate limiting may apply under high usage
- Network or API downtime returns a 5xx error

## How this service works

API for checking Solana token safety and risk signals for a given token mint address. Returns token safety analysis, risk indicators, and related metadata.

## Output

Returns a token safety assessment including risk indicators, scam signals, safety scores, and related metadata for the queried 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-858c626c/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)
