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

# Get Resolution

> Retrieve a single resolution by ID

```http theme={null}
GET /v1/accounts/{accountId}/resolutions/{resolutionId}
```

Returns a single resolution record. Same fields as [List Resolutions](/ledger/api-reference/resolutions/list-resolutions): `resolutionId`, `predexonId`, `title`, `outcome`, `result`, `size`, `averagePrice`, `payoutPerShare`, `payoutAmount`, `realizedPnl`, `resolvedAt`, plus `metadata.venues` with per-venue redemption transactions.

**Response**

```json theme={null}
{
  "resolutionId": "res_7e1d...",
  "predexonId": "px-abc123def456",
  "title": "Will Trump win the 2028 election?",
  "outcome": "Yes",
  "result": "won",
  "size": "100",
  "averagePrice": "0.495",
  "payoutPerShare": "1.00",
  "payoutAmount": "100.00",
  "realizedPnl": "50.50",
  "resolvedAt": "2028-11-05T03:14:00Z",
  "metadata": {
    "venues": [
      { "venue": "polymarket", "size": "50", "txHash": "0xredeem1..." },
      { "venue": "limitless", "size": "50", "txHash": "0xredeem2..." }
    ]
  }
}
```
