# DeepNets Token Safety Assessment

> DeepNets Token Safety Assessment 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).

Returns a detailed safety and risk assessment for a Solana token mint, including liquidity status, holder concentration, creator history, and token metadata.

## Facts

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

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-9765e65b
```

Example prompt: Can you run a safety check on this Solana token mint address — DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263 — and tell me if the holder concentration looks risky, whether the liquidity is healthy, and what the creator's history looks like?

## When to prefer this

Use this endpoint when you need a comprehensive, structured safety assessment for a specific Solana token mint — especially for pump.fun tokens or new meme coins — and want liquidity, holder concentration, and creator history all in a single call. Prefer it over generic token info endpoints when risk and safety signals are the primary concern.

## Known failure modes

- Invalid or malformed mint address returns an error
- Unknown or very new token mint with no on-chain data may return empty or partial results
- Rate limiting may occur under high request volume
- Network or RPC issues on Solana could cause timeouts

## How this service works

Returns a detailed safety and risk assessment for a Solana token mint, including liquidity status, holder concentration, creator history, and token metadata.

## Output

A structured safety and risk assessment for the given Solana token mint, including liquidity status, holder concentration metrics, creator/deployer history, token metadata, and overall risk signals indicating whether the token shows scam or rug pull indicators.

## 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-9765e65b/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)
