# TradeOS Token Risk Gate

> TradeOS Token Risk Gate is a paid API for AI agents from tradeos.tech, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-13).

Screens a crypto token contract or symbol for scam, liquidity, holder-concentration, tokenomics, and value-capture risks, returning a structured read-only risk verdict.

## Facts

- Endpoint: POST https://tradeos.tech/x402/v1/intelligence/tradeos-token-risk
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tradeos-tech-503c68dc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_H7gZdPYbDArKPo2xdmt1N

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 tradeos-tech-503c68dc -d '<json body>'
```

Example prompt: Before I add 0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984 to my watchlist, run a TradeOS token risk screen on it and tell me the scam verdict, liquidity score, holder concentration, and confidence level.

## When to prefer this

Choose this endpoint when an AI agent, bot, or screener needs a fast, structured risk gate before allowing a token into a watchlist, pipeline, or research context — especially when you need explicit scam, liquidity, holder-concentration, and tokenomics fields in a single call rather than assembling raw on-chain data yourself. Prefer this over generic market data endpoints when the primary concern is safety screening rather than price or signal data.

## Known failure modes

- Unknown or very new contract with insufficient on-chain data — missing-data flags set, confidence score low
- Invalid contract address format — validation error returned
- Token not found on supported chains — error with chain scope message
- Payment not confirmed via x402 — 402 Payment Required response
- Rate limit exceeded — 429 response
- Downstream data provider timeout — partial result or 503

## Output

A structured JSON object containing a risk verdict with fields for scam assessment, liquidity risk, holder concentration, tokenomics evaluation, value-capture score, overall confidence, any missing data indicators, supporting evidence, and a next-check timestamp — all read-only, no execution or trading signals.

## Example request

```json
{
 "input": {
  "body": {
   "output": "json",
   "symbol": "USDC",
   "chain_id": "1",
   "metadata": {},
   "contract_address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48"
  },
  "type": "http",
  "method": "POST",
  "bodyType": "json"
 }
}
```

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "properties": {
      "output": {
       "type": "string"
      },
      "symbol": {
       "type": "string"
      },
      "chain_id": {
       "type": "string"
      },
      "metadata": {
       "type": "object"
      },
      "contract_address": {
       "type": "string"
      }
     },
     "additionalProperties": true
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "const": "POST"
    },
    "bodyType": {
     "type": "string",
     "const": "json"
    }
   }
  },
  "output": {
   "type": "object"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tradeos-tech-503c68dc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from tradeos.tech](https://www.zero.xyz/host/tradeos.tech/llms.txt)
