---
title: "List Quotes"
method: GET
path: "/quotes"
tags: ["Quotes"]
---

# List Quotes

`GET /quotes`

List quotes for buying or selling assets. By default, the list will
include the latest available quotes for both buying and selling all supported
assets.

Each quote is valid until `expires_at`, and can be executed on by
calling [Create Quote Execution](#operation/CreateQuoteExecution).

Multiple calls to list quotes in quick succession may return the same quote
values. Paxos currently issues new quotes at most once per second.

## Query parameters

- `markets` string[], required

## Response `200`

A successful response.

- ListQuotesResponse
  - `items` Quote[]
    - `id` string, required — The UUID of the quote.
    - `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, held until expires_at.
    - `base_asset` string, required — The "base" side of the trading pair (crypto - like BTC, ETH, PAXG).
    - `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 was first offered.
    - `expires_at` string, date-time, required — The time at which the quote expires.

---

[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)
