---
title: "List Quote Executions"
method: GET
path: "/profiles/{profile_id}/quote-executions"
tags: ["Quote Executions"]
---

# List Quote Executions

`GET /profiles/{profile_id}/quote-executions`

List quote executions within a particular profile.

## Path parameters

- `profile_id` string, required

## Query parameters

- `side` 'BUY' | 'SELL'
- `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'
- `status` 'CREATED' | 'SETTLED'
- `created_at.begin` string, date-time
- `created_at.end` string, date-time
- `limit` integer
- `order` 'DESC' | 'ASC'
- `order_by` 'CREATED_AT'
- `page_cursor` string

## Response `200`

A successful response.

- ListQuoteExecutionsResponse
  - `total_count` integer
  - `items` QuoteExecution[]
    - `id` string, required — The UUID of the quote execution.
    - `profile_id` string, required — The ID of the profile under which this order executed.
    - `quote_id` string, required — The ID of the quote used to create this quote execution.
    - `ref_id` string — A unique identifier for the quote execution creation (for idempotence).
    - `status` 'CREATED' | 'SETTLED', required — A QuoteExecution begins in state `CREATED` and transitions to end state `SETTLED` when all accounting movements are complete.
    - `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', required
    - `side` 'BUY' | 'SELL', required — Trade side.
    - `price` string, decimal, required — The guaranteed price of the quote.
    - `base_amount` string, decimal, required — The amount of assets (crypto) in the transaction.
    - `base_asset` string, required — The "base" side of the trading pair (crypto - like BTC, ETH, PAXG).
    - `quote_amount` string, decimal, required — The amount of quote currency (cash) in the transaction.
    - `quote_asset` string, required — The "quote" side of the trading pair (fiat - like USD, EUR, SGD).
    - `created_at` string, date-time, required — The time at which the quote execution was created.
    - `settled_at` string, date-time — The time at which the quote execution was settled, completing its lifecycle.
    - `metadata` object — Client-specified metadata.
    - `identity_id` string — The identity under which this quote execution is placed.
    - `account_id` string — The account under which this quote execution is placed.
    - `recipient_profile_id` string — The ID of the profile under which to deposit the funds.
  - `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/revisions/0687ca8c9a8d/schema)
