# Crypto Trading Verdict API

> Crypto Trading Verdict API is a paid API for AI agents from agentdata-api.sander-van-aard.workers.dev, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-13).

Returns a live trading signal (long position or 15-minute daytrade setup) for a crypto pair, including confidence score, entry range, stop-loss, take-profit, and reward:risk ratio.

## Facts

- Endpoint: POST https://agentdata-api.sander-van-aard.workers.dev/crypto/verdict
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/crypto-trading-verdict-api-f5e905de
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5U2fsYN43EvtJB18CJzCB

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 crypto-trading-verdict-api-f5e905de -d '<json body>'
```

Example prompt: Get me the latest trading verdict for BTC-EUR — I want both the long position signal with confidence and risk summary, and the 15-minute daytrade setup with entry range, stop-loss, and take-profit.

## When to prefer this

Use this endpoint when an agent needs a structured, data-driven trading signal for a specific crypto pair, particularly when both positional (long-term) and short-term (15-minute daytrade) perspectives are needed in a single call. Prefer this over generic price feeds when you need actionable trade parameters like entry ranges, stop-losses, and take-profit targets with reward:risk context. The no-charge policy on stale verdicts makes it safe to poll without financial risk on empty results.

## Known failure modes

- 400 returned when no fresh/valid verdict exists for the requested layer — no charge applied
- Invalid or unsupported coin pair may result in error
- Upstream signal system outage may prevent verdict generation
- Malformed request body or missing required fields returns validation error

## How this service works

Live crypto trading verdict for a coin (e.g. BTC-EUR), resold from an upstream signal system. Two layers: 'long' (positional ALLOW_LONG/EXIT/HOLD with confidence, summary and primary risk) and 'daytrade' (a 15m LONG/EXIT setup with entry range, stop-loss, take-profit and reward:risk). Pick layer long|daytrade|both. No fresh verdict for the requested layer means 400 and no charge — you only pay for an actual, still-valid verdict. Factual model output, not investment advice.

## Output

Returns a structured verdict for the requested layer(s). The 'long' layer includes a positional signal (ALLOW_LONG, EXIT, or HOLD), a confidence value, a plain-language summary, and the primary risk factor. The 'daytrade' layer includes a 15-minute LONG or EXIT signal, an entry price range, stop-loss level, take-profit target, and the reward:risk ratio. If no fresh verdict is available for the requested layer, a 400 is returned and no charge is made.

## 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"
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "headers": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    }
   },
   "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/crypto-trading-verdict-api-f5e905de/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentdata-api.sander-van-aard.workers.dev](https://www.zero.xyz/host/agentdata-api.sander-van-aard.workers.dev/llms.txt)
