List Conversions
GET/conversions
This endpoint has been deprecated and may be replaced or removed in future versions of the API.
Retrieve a list of currency conversions associated with the specified user. Optional filter parameters can be used to refine your search.
Request
Query Parameters
Default value: 1
Page number.
Possible values: <= 100
Default value: 20
Page size. Max size is 100.
Possible values: [created_at
]
Page sort attribute.
Possible values: [asc
, desc
]
Default value: asc
Page order.
Operation ID for conversion.
Currency Symbol for conversion.
Quotation ID for conversion.
Possible values: [buy
, sell
]
Conversion type.
Conversion client name.
Conversion client document.
Created at start for any conversion.
Created at end for any conversion.
Header Parameters
The nonce ID is a UUID (v4) used to uniquely identify the requisition. All requisitions must have an identifier.
Responses
- 200
- 400
- 401
- 422
The conversions returned successfully.
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
Page number.
Page size.
Page total.
Total of elements.
data object[]required
Conversions data.
Conversion UUID.
Operation UUID. Used to track the conversion.
Quotation UUID. Used to track the quotation for this conversion.
Currency ID. Used to track the currency for this conversion.
Currency Title.
Currency Symbol.
Currency Decimal
Possible values: [buy
, sell
]
Conversion type.
Client name for conversion.
Client document for conversion.
Crypto Amount (sell or buy) for conversion. Without decimal houses.
Crypto Quote (sell or buy) for conversion.
Conversion created at.
{
"page": 1,
"page_size": 20,
"page_total": 20,
"total": 100,
"data": [
{
"id": "f6e2e084-29b9-4935-a059-5473b13033aa",
"operation_id": "f6e2e084-29b9-4935-a059-5473b13033aa",
"quotation_id": "f6e2e084-29b9-4935-a059-5473b13033aa",
"currency_id": 2,
"currency_title": "Bitcoin",
"currency_symbol": "BTC",
"currency_decimal": 8,
"conversion_type": "buy",
"client_name": "Name Test",
"client_document": "***66848000***",
"amount": 100000,
"quote": "0.99931",
"created_at": "2024-11-22T13:43:07.724Z"
}
]
}
If any required params are missing or has invalid format or type.
User authentication failed.
If any required params are missing or has invalid format or type.