---
title: "List Executions"
method: GET
path: "/executions"
tags: ["Orders"]
---

# List Executions

`GET /executions`

Retrieves full details of underlying executions with optional filters.
Notes:
- This endpoint returns a maximum of 1000 items per page.
- Filtering options are `account_id`, `profile_id` or neither (all executions).

## Query parameters

- `profile_id` string
- `account_id` string
- `order_id` string
- `since_execution_id` string
- `range.begin` string, date-time
- `range.end` string, date-time
- `page_cursor` string
- `limit` integer

## Response `200`

A successful response.

- ListExecutionsResponse
  - `items` Execution[]
    - `execution_id` string, uint64
    - `order_id` string — The UUID of the order associated with the execution.
    - `executed_at` string, date-time — Timestamp of the execution.
    - `market` 'ETHEUR' | 'ETHSGD' | 'ETHUSD' | 'BTCEUR' | 'BTCSGD' | 'BTCUSD' | 'PAXGUSD' | 'BCHUSD' | 'LTCUSD' | 'USDPUSD' | 'LINKUSD' | 'AAVEUSD' | 'UNIUSD' | 'PEPEUSD' | 'TRUMPUSD' | 'SHIBUSD' | 'ARBUSD' | 'BONKUSD' | 'ENAUSD' | 'MNTUSD' | 'ONDOUSD' | 'PENGUUSD' | 'QNTUSD' | 'RENDERUSD' | 'SKYUSD' | 'WIFUSD' | 'WLDUSD' | 'DOGEUSD' | 'AVAXUSD' | 'SUIUSD' | 'POLUSD' | 'XLMUSD' | 'BNBUSD'
    - `side` 'BUY' | 'SELL' — Trade side.
    - `amount` string, decimal — Execution amount.
    - `price` string, decimal — Execution price.
    - `commission` string, decimal — Amount of commission paid.
    - `commission_asset` string — Currency of Commission payment. Fiat Only (USD, EUR, SGD).
    - `rebate` string, decimal — Amount of rebate applied.
    - `rebate_asset` string — Currency of the rebate. Fiat Only (USD, EUR, SGD).
    - `account_id` string — Account ID associated with the execution.
    - `gross_trade_amount` string, decimal — The total asset traded (asset amount multiplied by price paid).
  - `next_page_cursor` string — Cursor token required for fetching the next page.

---

[API](https://skmtc.net/paxos/apis/paxos-api.md) · [All operations](https://skmtc.net/paxos/apis/paxos-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/paxos/paxos-api/versions/0687ca8c9a8d/schema)
