v1

latestOpenAPI 3.1.02026-07-24320172.9 KB

Retrieve Paginated Quotes

get/api/quote/v2.0/quotes

Path parameters

quoteIdstring required

Unique quote identifier provided on the quote creation. If provided will only return one result

taxIdstring required

Unique tax identification. Is different for each country

taxIdCountrystring required

Target user's country

side'Buy' | 'Sell' required

The direction you want to convert the currency when the quote is generated

pageSizestring required

The quantity of results by page

pageNumberstring required

The requested exactly result page

beginDatestring date required

Begin date to get a range of transactions. BeginDate must be in one of the following formats: YYYY-MM-dd'T'HH:mm:ss or YYYY-MM-dd HH:mm:sszzz

endDatestring date required

End date to get a range transactions. EndDate must be in the one of the following formats: YYYY-MM-dd'T'HH:mm:ss or YYYY-MM-dd HH:mm:sszzz

Headers

Authorizationstring required

The personal authentication token obtained by each user from the token authentication endpoint

Response

200

idstring
quoteIdstring
{"stackTrail":"paths:/api/quote/v2.0/quotes:get:responses:200:content:application/json:schema:items:properties:tradeId","oasType":"schema","type":"unknown"}
successboolean
{"stackTrail":"paths:/api/quote/v2.0/quotes:get:responses:200:content:application/json:schema:items:properties:taxId","oasType":"schema","type":"unknown"}
taxIdCountryinteger
quoteRequestedAtstring
baseCurrencystring
baseCurrencySizeinteger
quoteCurrencySizeinteger
quoteCurrencystring
sidestring
priceinteger
expireAtstring

Example response

[
  {
    "id": "83898f90-3336-42f2-9524-5f113506b236",
    "quoteId": "f55fbbcd-6b33-4dfb-81a7-0216e1531099",
    "success": true,
    "quoteRequestedAt": "2024-03-27T10:11:07Z",
    "baseCurrency": "ETH",
    "baseCurrencySize": 5,
    "quoteCurrency": "USDT",
    "side": "Buy",
    "price": 17573,
    "expireAt": "2024-03-27T10:11:20Z"
  }
]