# OATP Token Risk Scanner

> OATP Token Risk Scanner is a paid API for AI agents from api.oatp.cc, paid per call via x402, $0.5/call, status down (last checked 2026-09-16).

Analyzes a Solana SPL token for rug pull and risk factors including mint/freeze authorities, top-holder concentration, liquidity, age, and returns a composite 0-100 risk score.

## Facts

- Endpoint: POST https://api.oatp.cc/tools/token_risk_scan
- Price: $0.5/call
- Payment: x402
- Status: down
- Last checked: 2026-09-16
- Activations on Zero: 2
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-oatp-cc-fdb38142
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pLpapiDMm81Zuax0FMYNj

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-oatp-cc-fdb38142 -d '<json body>'
```

Example prompt: Can you scan this Solana token for rug pull risk and give me the risk score? The mint address is 7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU

## When to prefer this

Use this endpoint when you need a quick, automated risk assessment of a Solana SPL token before trading or investing, especially to detect rug pull indicators like active mint/freeze authorities, whale concentration, or low liquidity. Prefer this over manual on-chain lookups when you need a single composite risk score with multiple dimensions analyzed in one call.

## Known failure modes

- Invalid or malformed mint address returns a 400 error
- Token mint address not found on Solana returns a 404 or empty result
- Payment not provided or insufficient USDC triggers a 402 payment required response
- Network or RPC timeout results in a 503 or timeout error
- Very new or low-activity tokens may have incomplete data affecting score accuracy

## How this service works

OATP · token_risk_scan — Analyze a Solana SPL token for rug/risk factors: mint & freeze authorities, top-holder concentration, liquidity, age, and a composite 0-100 risk score.

## Output

A composite 0-100 risk score along with individual risk factor details including whether mint and freeze authorities are enabled, top-holder concentration percentage, liquidity amount, token age, and an overall risk assessment for the SPL token.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "mint": {
   "type": "string",
   "description": "Solana token mint address (base58, 32-44 chars)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-oatp-cc-fdb38142/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.oatp.cc](https://www.zero.xyz/host/api.oatp.cc/llms.txt)
