# HERGERT SYNTHORA Market Resolution

> HERGERT SYNTHORA Market Resolution is a paid API for AI agents from api.hergertsynthora.com, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Fetches current state, pricing, liquidity, and resolution metadata for a Polymarket prediction market by slug or condition ID

## Facts

- Endpoint: POST https://api.hergertsynthora.com/v1/market-resolution
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/hergert-synthora-market-resolution-ee9c5a76
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EO38tfprnToePmTrfITbf

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 hergert-synthora-market-resolution-ee9c5a76 -d '<json body>'
```

Example prompt: Can you look up the current state of the Polymarket market with slug 'will-btc-hit-100k-in-2025' — I want to know if it's still active, what the current Yes price is, the liquidity, and how many hours until it resolves?

## When to prefer this

Use this endpoint when you need a comprehensive, single-call snapshot of a Polymarket prediction market including price, liquidity, volume, resolution timing, and UMA protocol metadata. Prefer it over direct Polymarket API calls when operating in an x402 micropayment-enabled agent context, or when you need the normalized implied EV calculation alongside raw price data.

## Known failure modes

- Market slug not found — returns error if slug does not match any Polymarket market
- Condition ID format invalid — 0x string must be a valid hex condition ID
- Market already closed — data returned but accepting_orders will be false and winning_outcome_if_decided may be populated
- Polymarket API unavailable — upstream data fetch failure
- Payment not included or insufficient — x402 payment of $0.01 USDC required per call

## How this service works

Canonical resolution status for one Polymarket market (market_slug or condition_id required): market state (active/resolving/closed), UMA resolution statuses (proposed/disputed), end date and hours to resolution, declared resolution source plus sources found in the rules text, current outcome prices, UMA bond/reward and estimated payout per outcome (1.00 USDC per winning share, implied EV). The call a prediction bot makes before and after trading a market. No charge on service failure. Ed25519-signed. $0.01 USDC per call via x402 on Base. Free trial: 3 calls per wallet with header X-WALLET.

## Output

A JSON object containing the market question, active/closed status, end date, hours to resolution, current Yes/No prices with implied EV per share, 24h volume in USD, total liquidity in USD, whether orders are being accepted, UMA bond and reward amounts, the resolution source URL, UMA resolution statuses, and the winning outcome if already decided.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "market_slug": {
   "type": "string",
   "description": "Polymarket market slug (required unless condition_id)"
  },
  "condition_id": {
   "type": "string",
   "description": "0x condition id (overrides slug)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "niche": "market_resolution",
  "result": {
   "slug": "...",
   "active": true,
   "closed": false,
   "end_date": "...",
   "question": "...",
   "uma_bond": "250",
   "uma_reward": "1.5",
   "condition_id": "0x...",
   "market_state": "active",
   "liquidity_usd": 50000,
   "volume_24h_usd": 100000,
   "accepting_orders": true,
   "estimated_payout": [
    {
     "outcome": "Yes",
     "current_price": 0.62,
     "implied_ev_usd_per_share": 0.62,
     "payout_if_wins_usd_per_share": 1
    }
   ],
   "last_trade_price": 0.62,
   "resolution_source": "https://...",
   "hours_to_resolution": 48.5,
   "uma_resolution_statuses": [],
   "winning_outcome_if_decided": null,
   "resolution_sources_in_description": [
    "https://..."
   ]
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/hergert-synthora-market-resolution-ee9c5a76/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.hergertsynthora.com](https://www.zero.xyz/host/api.hergertsynthora.com/llms.txt)
