# DeepNets Solana Token Safety Analyzer

> DeepNets Solana Token Safety Analyzer 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 and returns a safety report with risk flags, holder concentration, liquidity status, and token authority properties.

## Facts

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

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

Example prompt: Can you check if this Solana token is safe — the mint address is DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263? I want to know about any risk flags, holder concentration, and whether the liquidity is locked.

## When to prefer this

Use this endpoint when you need a quick, structured safety assessment of a Solana token before trading or investing, especially for pump.fun or memecoin tokens where rug pull risk is high. Prefer this over generic token info endpoints when risk assessment and scam detection are the primary concern.

## Known failure modes

- Invalid or malformed mint address returns an error
- Token mint not found on-chain returns empty or error response
- Rate limiting may occur under high usage
- Newly created tokens may have insufficient on-chain data for full analysis

## How this service works

Analyzes a Solana token mint and returns a safety report including risk flags, holder concentration, liquidity status, and token authority properties.

## Output

A structured safety report for the given Solana token mint, including risk flags (e.g. honeypot, freeze authority, mint authority enabled), holder concentration metrics, liquidity lock status, and token authority properties indicating potential rug pull or scam signals.

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