# Skopos Risk API

> Skopos Risk API is a paid API for AI agents from www.tryskopos.xyz, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13).

Returns a risk assessment for a token given its symbol or contract address, supporting cross-chain intent execution decisions.

## Facts

- Endpoint: POST https://www.tryskopos.xyz/api/risk
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/skopos-risk-api-c1830ace
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fxmqnYhvPjT73iezvFhY9

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 skopos-risk-api-c1830ace -d '<json body>'
```

Example prompt: Can you check the risk level for the token USDC before I swap it cross-chain on Skopos?

## When to prefer this

Use this endpoint when you need to assess the risk of a specific token or contract address before executing a cross-chain trade or intent on Skopos. Prefer this over generic on-chain data APIs when you want a pre-computed risk signal specifically integrated into the Skopos intent execution flow.

## Known failure modes

- Invalid or unrecognized token symbol returns an error or empty result
- Contract address not found on supported chains returns a not-found error
- Query string too long (>64 chars) or empty (<1 char) triggers schema validation failure
- Network or service unavailability returns a 5xx error
- Malformed request body returns a 400 bad request

## How this service works

Cross-chain intent execution. Say what you want, it executes.

## Output

A risk assessment object containing risk scoring information for the queried token symbol or contract address, used to inform cross-chain intent execution decisions on Skopos.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "query": {
   "type": "string",
   "maxLength": 64,
   "minLength": 1,
   "description": "Token symbol or contract address"
  }
 }
}
```

## More

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