# Stratalize Oracle Price Threshold Resolver

> Stratalize Oracle Price Threshold Resolver is a paid API for AI agents from www.stratalize.com, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-14).

Resolves a boolean (true/false) price condition for a crypto pair against a threshold, returning multi-source consensus with ML-DSA-65 cryptographic attestation and a verifiable receipt.

## Facts

- Endpoint: GET https://www.stratalize.com/api/x402/resolve-price-threshold
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stratalize-oracle-price-threshold-resolver-fdb0300b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DHOkbG5aN-FRLIZziYpUL

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 stratalize-oracle-price-threshold-resolver-fdb0300b
```

Example prompt: Check if BTC is currently above $95,000 USD using multi-source consensus — I need a cryptographically signed yes/no answer with a verifiable receipt for our smart contract trigger, with a 1% tolerance.

## When to prefer this

Use this endpoint when a smart contract, agent workflow, or treasury rule requires a cryptographically attested boolean price condition rather than a raw price quote. It is ideal when auditability, dispute signaling, and multi-source consensus matter — for example, in DeFi automation, on-chain condition gates, or compliance workflows requiring verifiable proof. Prefer over raw price feed endpoints when you need a signed receipt and a single true/false answer rather than a numeric value.

## Known failure modes

- Unsupported crypto symbol returns error or empty result
- Sources disagree beyond tolerance — dispute signal set, boolean may be unreliable
- Invalid direction enum value (must be 'above' or 'below') causes request rejection
- Threshold value missing or malformed causes validation error
- tolerance_pct out of 0-100 range causes parameter rejection
- Service unavailable or oracle feeds down returns 5xx error
- Payment not processed (x402 payment required) blocks the response

## How this service works

Stratalize — attested finance, legal, healthcare, and compliance intelligence. Signed, independently verifiable receipt on every call (trust.stratalize.com/verify). Use when a smart contract, treasury rule, or agent workflow needs a boolean price condition resolved with cryptographic attestation. Returns true/false for above/below thresholds on crypto pairs using multi-source consensus, agreement score, threshold context, and dispute signaling when sources disagree. Source: Stratalize Oracle thr

## Output

Returns a boolean true/false indicating whether the price condition is met, along with an agreement score across sources, threshold context, a dispute signal if sources disagree, and an ML-DSA-65 cryptographic signature with a verifiable receipt URL at trust.stratalize.com/verify.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "fiat": {
   "type": "string",
   "description": "Request parameter: fiat"
  },
  "symbol": {
   "type": "string",
   "description": "Request parameter: symbol"
  },
  "direction": {
   "enum": [
    "above",
    "below"
   ],
   "type": "string",
   "description": "Request parameter: direction"
  },
  "threshold": {
   "type": "number",
   "description": "Request parameter: threshold"
  },
  "tolerance_pct": {
   "type": "number",
   "maximum": 100,
   "minimum": 0,
   "description": "Request parameter: tolerance pct"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stratalize-oracle-price-threshold-resolver-fdb0300b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.stratalize.com](https://www.zero.xyz/host/www.stratalize.com/llms.txt)
