# BlockRun.AI Predexon Outcome Resolver

> BlockRun.AI Predexon Outcome Resolver is a paid API for AI agents from blockrun.ai, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Resolves a canonical Predexon outcome ID to its market context and venue listings across prediction market venues

## Facts

- Endpoint: GET https://blockrun.ai/api/v1/pm/outcomes/px-xz7fw6lsywv2rnwr
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/blockrun-ai-d352cf73
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EMWZjkh1chmXKgObK5AI0

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 blockrun-ai-d352cf73
```

Example prompt: Can you look up the market context and venue listings for Predexon outcome ID px-xz7fw6lsywv2rnwr on BlockRun.AI?

## When to prefer this

Use this endpoint when you have a canonical Predexon outcome ID and need to resolve it to its underlying market context or discover which prediction market venues (e.g. Polymarket, others) list it. Ideal for cross-venue aggregation, arbitrage discovery, or when navigating from a canonical ID to tradeable listings.

## Known failure modes

- Invalid or unrecognized Predexon outcome ID returns 404 or empty data
- Network timeout or service unavailability returns 5xx error
- Payment failure (x402) if USDC micropayment not processed correctly
- Outcome ID exists but has no associated venue listings returns empty listings array

## How this service works

Fetches paid outcome data for a BlockRun project management endpoint.

## Output

Returns the canonical market context (question, description, resolution criteria) and a list of venue-native listings across prediction market platforms that correspond to the given Predexon outcome ID, enabling cross-venue comparison and navigation.

## Example request

```json
{
 "input": {
  "body": {}
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "body": {
     "type": "object",
     "required": [],
     "properties": {}
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "example": {
     "type": "object",
     "properties": {
      "data": {
       "type": "object"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/blockrun-ai-d352cf73/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from blockrun.ai](https://www.zero.xyz/host/blockrun.ai/llms.txt)
