# DeepNets Token Safety Analysis

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

Returns a comprehensive safety and risk analysis report for a Solana token mint address, covering liquidity, holder concentration, authorities, metadata, and an overall safety rating.

## Facts

- Endpoint: GET https://api.deepnets.ai/api/token-safety/6uPwgn83yF2eFBFeLewo6a32Eo2Su7wrtc5T61ATpump
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-deepnets-ai-5427c732
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bTFIclNio5sQb6PQgLFOz

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-5427c732
```

Example prompt: Can you run a full safety and risk analysis on the Solana token with mint address 6uPwgn83yF2eFBFeLewo6a32Eo2Su7wrtc5T61ATpump — I want to know about its liquidity, holder concentration, whether authorities are revoked, and what the overall safety level is?

## When to prefer this

Use this endpoint when you need a comprehensive, multi-factor safety report for a specific Solana token before investing or interacting with it — especially for pump.fun tokens or new memecoins. Prefer this over simpler scam-check endpoints when you need detailed breakdowns of liquidity, authority status, and holder distribution together in one call.

## Known failure modes

- Invalid or malformed mint address returns an error or empty result
- Token not found on-chain returns 404 or no-data response
- Rate limiting or payment failure returns 402 or 429
- Very new tokens may lack sufficient on-chain data for full analysis
- Network latency from Solana RPC calls may cause timeouts

## How this service works

Returns a token safety and risk analysis report for a Solana mint address, including liquidity, holder concentration, token authorities, metadata, and overall safety level.

## Output

A structured token safety report including: overall safety level/rating, liquidity data, holder concentration metrics, token authority status (mint, freeze, etc.), metadata validity, and specific risk signals that flag potential scams, rug pulls, or unsafe contracts.

## 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-5427c732/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)
