# 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 for safety signals including liquidity, holder concentration, creator risk, and metadata to return a structured risk assessment.

## Facts

- Endpoint: GET https://api.deepnets.ai/api/token-safety/86Vut2rsdFNxdjGyF88m5aqdiwFXQ2fMEN36HdVZpump
- 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-1f3e52e7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xbA9eVYUpJGCx35wUStwM

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-1f3e52e7
```

Example prompt: Can you check whether the Solana token with mint address 86Vut2rsdFNxdjGyF88m5aqdiwFXQ2fMEN36HdVZpump is safe — I want to know about its liquidity, holder concentration, and any creator risk flags before I buy.

## When to prefer this

Use this endpoint when you need a structured, multi-signal safety assessment of a specific Solana token before trading or recommending it — especially useful for pump.fun tokens or newly launched mints where rug pull risk is high. Prefer this over generic token info endpoints when the goal is risk detection rather than token metadata retrieval.

## Known failure modes

- Invalid or malformed mint address returns an error
- Token mint not found on-chain returns empty or 404 response
- Rate limiting may occur for high-frequency calls
- Newly created tokens may have insufficient on-chain data for full assessment
- Network or RPC node issues may cause timeouts

## How this service works

Analyzes a Solana token mint for safety signals, including liquidity, holder concentration, creator risk, and metadata properties. Returns a structured token risk assessment with supporting details.

## Output

Returns a structured token risk assessment object with safety signals covering liquidity levels, holder concentration metrics, creator risk indicators, and metadata property flags, allowing the agent to determine whether a Solana token poses rug pull or scam risks.

## 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-1f3e52e7/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)
