GET
/
quotes
List Quotes
curl --request GET \
  --url https://api.paxos.com/v2/quotes \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "366a26d2-3098-4226-a520-4bb43ae4d922",
      "market": "BTCUSD",
      "side": "BUY",
      "price": "6001.2",
      "base_asset": "BTC",
      "quote_asset": "USD",
      "created_at": "2020-01-17T18:36:08Z",
      "expires_at": "2020-01-17T18:36:38Z"
    },
    {
      "id": "71e2a297-f2d7-423c-8e4f-486aac70fa9f",
      "market": "BTCUSD",
      "side": "SELL",
      "price": "5999.8",
      "base_asset": "BTC",
      "quote_asset": "USD",
      "created_at": "2020-01-17T18:36:08Z",
      "expires_at": "2020-01-17T18:36:38Z"
    },
    {
      "id": "ee018e41-0379-41c6-a099-1ea81204b192",
      "market": "ETHUSD",
      "side": "BUY",
      "price": "225.88",
      "base_asset": "ETH",
      "quote_asset": "USD",
      "created_at": "2020-01-17T18:36:08Z",
      "expires_at": "2020-01-17T18:36:38Z"
    },
    {
      "id": "5a336768-5bc1-4401-9d95-9cb251ce4b58",
      "market": "ETHUSD",
      "side": "SELL",
      "price": "224.11",
      "base_asset": "ETH",
      "quote_asset": "USD",
      "created_at": "2020-01-17T18:36:08Z",
      "expires_at": "2020-01-17T18:36:38Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

Paxos APIs use OAuth 2 with the client credentials grant flow.

Token URLs:

Learn more in the API credentials guide →

Query Parameters

markets
enum<string>[]
required

Response

200 - application/json

A successful response.

The response is of type object.