> ## Documentation Index
> Fetch the complete documentation index at: https://docs.polynode.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Market Resolutions

> Browse recent market resolutions with payout data and market metadata.

Returns market resolution events, sorted by most recent. Each resolution includes the payout structure and enriched market metadata.

## Request

```
GET /v3/resolutions
```

### Query parameters

| Parameter | Type    | Default | Description       |
| --------- | ------- | ------- | ----------------- |
| `limit`   | integer | 100     | Max 300           |
| `offset`  | integer | 0       | Pagination offset |

## Example

```bash theme={null}
curl https://api.polynode.dev/v3/resolutions?limit=1
```

```json theme={null}
{
  "data": [
    {
      "category": null,
      "condition_id": "0xbd7f5df4a14a1b0ec35354ed910acf8c538d5e556c8389fcb58bb6a45c32e5b6",
      "created_at": "2026-05-15 22:16:02.633047",
      "outcomes": [
        "Over",
        "Under"
      ],
      "payout_denominator": "1",
      "payout_numerators": [
        "0",
        "1"
      ],
      "question": "Chicago Cubs vs. Chicago White Sox: O/U 11.5",
      "resolved_at": "1778883350000",
      "slug": "mlb-chc-cws-2026-05-15-total-11pt5"
    }
  ],
  "elapsed_ms": 6,
  "has_more": true,
  "limit": 1,
  "offset": 0,
  "rows_returned": 1
}
```

## Response fields

| Field                | Type   | Description                                                     |
| -------------------- | ------ | --------------------------------------------------------------- |
| `condition_id`       | string | Market condition ID                                             |
| `payout_numerators`  | array  | Payout for each outcome (e.g. `["0", "1"]` means outcome 1 won) |
| `payout_denominator` | string | Payout denominator (usually `"1"`)                              |
| `resolved_at`        | string | Resolution timestamp (milliseconds)                             |
| `created_at`         | string | When the resolution was recorded                                |
| `question`           | string | Market question                                                 |
| `slug`               | string | Market slug                                                     |
| `outcomes`           | array  | Outcome labels (e.g. `["Yes", "No"]`)                           |
| `category`           | string | Market category                                                 |
