# Hyperextend Outcome Context Latest

> Hyperextend Outcome Context Latest is a paid API for AI agents from api.hyperextend.xyz, paid per call via x402, $0.003475/call, status unknown (last checked 2026-09-15).

Returns the most recent market context snapshot for a HIP-4 outcome-side coin, including mid/mark price, circulating supply, and trading volumes.

## Facts

- Endpoint: GET https://api.hyperextend.xyz/v1/outcome_ctx/%7Bcoin%7D/latest
- Price: $0.003475/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/hyperextend-outcome-context-latest-759fc1f0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BWWgN_y-s3DKVBDPSijcR

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 hyperextend-outcome-context-latest-759fc1f0
```

Example prompt: What's the latest market context for Hyperliquid outcome coin #1000 — give me the current mid price, mark price, circulating supply, and today's trading volume?

## When to prefer this

Use this endpoint when you need the single most recent snapshot of price, volume, and supply data for a specific HIP-4 outcome-side coin on Hyperliquid, rather than a historical window query. Prefer this over the windowed endpoint when you only need the latest state without specifying a time range.

## Known failure modes

- Invalid or malformed coin identifier returns 400 or empty response
- Coin not found / not a valid HIP-4 outcome coin returns 404
- Payment not completed (x402 protocol failure) returns 402
- Rate limiting or quota exceeded returns 429
- Stale data if the market has low activity or no recent trades

## How this service works

Per-minute Hyperliquid market history: open interest, candles, trades, liquidations, HIP-3, spot and outcome markets. Query any window, pay per request over x402.

## Output

A JSON object containing the outcome coin identifier, mid price, mark price, circulating supply, day notional volume, day base volume, previous day price, and timestamps (minute and sample) for the most recent snapshot of the specified HIP-4 outcome-side market.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "coin"
     ],
     "properties": {
      "coin": {
       "type": "string",
       "description": "Encoded HIP-4 outcome-side coin '#<10*outcome+side>' (e.g. #1000)"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "n": {
       "type": "integer"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "coin": "#1000",
  "mid_px": "0.62",
  "source": "ws",
  "mark_px": "0.62",
  "minute_ts": 1700000000,
  "sample_ts": 1700000005,
  "day_ntl_vlm": "54321.0",
  "prev_day_px": "0.58",
  "day_base_vlm": "87654.0",
  "circulating_supply": "1000000.0"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/hyperextend-outcome-context-latest-759fc1f0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.hyperextend.xyz](https://www.zero.xyz/host/api.hyperextend.xyz/llms.txt)
