# Predge Call Resolution

> Predge Call Resolution is a paid API for AI agents from api.predge.io, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Resolves a signed Predge whale-intelligence call by ID, verifying the outcome and returning a cryptographically-signed resolution for use in prediction market workflows.

## Facts

- Endpoint: POST https://api.predge.io/v1/calls/%7Bid%7D/resolve
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/predge-call-resolution-d6f906ba
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WfdUGe2wG51JOUXZ-RY7t

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 predge-call-resolution-d6f906ba -d '<json body>'
```

Example prompt: Resolve and verify the outcome of my Predge whale intelligence call with ID 0b5e7c1e-0000-4000-8000-000000000000 and give me back the signed resolution confirming whether it was correct.

## When to prefer this

Use this endpoint when you need to cryptographically verify and finalize the outcome of a previously created Predge whale intelligence call. It is the canonical resolution step in a Predge call lifecycle — after calling POST /v1/calls to create a signed call, use this endpoint to confirm whether the whale signal prediction was correct and obtain a signed resolution proof. Prefer this over polling or external verification when you need an on-chain-ready or audit-ready signed resolution.

## Known failure modes

- Invalid or unknown call UUID returns a 404 or error response
- Attempting to resolve a call that has not yet settled results in an unresolved state or error
- Malformed POST body (incorrect bodyType or missing required fields) returns a 400 validation error
- Payment failure (insufficient USDC balance or x402 payment not processed) blocks the call
- Unauthorized access without valid payment header returns a 402 Payment Required

## How this service works

Real-time alerts on whale traders on Polymarket. Heuristic Insider Watch, wallet scoring 0–100, Bloomberg-style web terminal. Free plan included.

## Output

Returns a JSON object containing the call UUID, the original signed call reference (kind and signature), a boolean indicating whether the call was correct, and a signed resolution object (kind, signature, and outcome_verified flag) confirming the cryptographic settlement of the call.

## 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": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "properties": {
      "id": {
       "type": "string",
       "description": "signed call uuid returned by POST /v1/calls"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "id": "0b5e7c1e-0000-4000-8000-000000000000",
  "call": {
   "kind": "live-call",
   "signature": "…"
  },
  "correct": true,
  "resolution": {
   "kind": "call-resolution",
   "signature": "…",
   "outcome_verified": true
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/predge-call-resolution-d6f906ba/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.predge.io](https://www.zero.xyz/host/api.predge.io/llms.txt)
