Skip to main content
GET /v1/accounts/{accountId}/trades/{tradeId}
Returns the execution record for a single order, including aggregate execution summary and per-venue fill details. Response
{
  "tradeId": "trd_a1b2...",
  "orderId": "ord_3e2b...",
  "predexonId": "px-abc123def456",
  "title": "Will Trump win the 2028 election?",
  "outcome": "Yes",
  "side": "buy",
  "size": "100",
  "averagePrice": "0.495",
  "notional": "49.50",
  "fee": "0.50",
  "executedAt": "2026-05-06T12:00:00.832Z",
  "metadata": {
    "fills": [
      { "source": "venue", "venue": "polymarket", "size": "50", "fillPrice": "0.50", "fee": "0.25", "txHash": "0xabc..." },
      { "source": "venue", "venue": "limitless", "size": "50", "fillPrice": "0.49", "fee": "0.25", "txHash": "0xdef..." }
    ]
  }
}