# X402 Quantitative Risk Snapshot

> X402 Quantitative Risk Snapshot is a paid API for AI agents from x402.feld-feder.at, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Returns a pay-per-request quantitative risk assessment for a financial instrument or portfolio, including risk label, risk score, drawdown, volatility, and return metrics.

## Facts

- Endpoint: POST https://x402.feld-feder.at/v1/quant/risk-snapshot
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-quantitative-risk-snapshot-cdd77acb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kg14O1bRzRQyV2SHvhYri

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 x402-quantitative-risk-snapshot-cdd77acb -d '<json body>'
```

Example prompt: Run a quantitative risk snapshot on my portfolio returns data — I need the risk label, risk score, max drawdown, annualized volatility, and total return so I can see where it falls on the risk spectrum.

## When to prefer this

Choose this endpoint when you need a fast, affordable ($0.01 USDC), deterministic quantitative risk profile — including drawdown, volatility, risk score, and a categorical risk label — computed from provided financial data. It is well-suited for AI agents that need lightweight, pay-per-request risk analytics without subscribing to a full financial data platform.

## Known failure modes

- Missing or malformed input price/returns data returns an error
- Insufficient observations may produce unreliable or zero volatility metrics
- Payment failure via x402 protocol results in 402 response and no data returned
- Invalid request body format returns a parsing or validation error

## How this service works

Pay-per-request data tools for AI agents.

## Output

Returns a JSON object with a risk_label (e.g. 'moderate'), a numerical risk_score, max_drawdown_pct, total_return_pct, downside_deviation_pct, annualized_volatility_pct, and the number of observations used. Includes a disclaimer that output is deterministic research only, not financial advice.

## 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",
     "title": "PriceSeriesRequest",
     "required": [
      "closes"
     ],
     "properties": {
      "closes": {
       "type": "array",
       "items": {
        "type": "number",
        "maximum": 1000000000000,
        "exclusiveMinimum": 0
       },
       "title": "Closes",
       "maxItems": 2000,
       "minItems": 3
      }
     },
     "additionalProperties": false
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "title": "ResponseEnvelope[QuantRiskSnapshotResult]",
     "required": [
      "data"
     ],
     "properties": {
      "ok": {
       "type": "boolean",
       "const": true,
       "title": "Ok",
       "default": true
      },
      "data": {
       "type": "object",
       "title": "QuantRiskSnapshotResult",
       "required": [
        "observations",
        "total_return_pct",
        "annualized_volatility_pct",
        "downside_deviation_pct",
        "max_drawdown_pct",
        "risk_score",
        "risk_label",
        "disclaimer"
       ],
       "properties": {
        "disclaimer": {
         "type": "string",
         "title": "Disclaimer"
        },
        "risk_label": {
         "enum": [
          "low",
          "moderate",
          "high",
          "very_high"
         ],
         "type": "string",
         "title": "Risk Label"
        },
        "risk_score": {
         "type": "number",
         "title": "Risk Score"
        },
        "observations": {
         "type": "integer",
         "title": "Observations"
        },
        "max_drawdown_pct": {
         "type": "number",
         "title": "Max Drawdown Pct"
        },
        "total_return_pct": {
         "type": "number",
         "title": "Total Return Pct"
        },
        "downside_deviation
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "data": {
   "disclaimer": "Deterministic research output only; not financial advice or an order signal.",
   "risk_label": "moderate",
   "risk_score": 30.574257,
   "observations": 5,
   "max_drawdown_pct": 1.980198,
   "total_return_pct": 4,
   "downside_deviation_pct": 0,
   "annualized_volatility_pct": 40
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-quantitative-risk-snapshot-cdd77acb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.feld-feder.at](https://www.zero.xyz/host/x402.feld-feder.at/llms.txt)
