Get RFQ Conversion

Retrieve details of a specific RFQ conversion transaction using its unique conversion ID.

Endpoint URL

GET https://api.bitso.com/rfq/v1/conversions/{conversion_id}


Request

Path Parameters

ParameterTypeRequiredDescription
conversion_idstringYesThe unique identifier of the RFQ conversion

Example

GET https://api.bitso.com/rfq/v1/conversions/38af5e7e-2dd0-4af0-a03c-895662a1ea21


Response

Fields

FieldTypeDescription
idstringUnique conversion transaction ID
sourcestringSource currency (what was sold)
targetstringTarget currency (what was bought)
source_amountstringAmount of source currency converted
target_amountstringAmount of target currency received
quote_idstringOriginal quote ID that was executed
ratestringExchange rate applied (including fees)
fee_amountstringTotal fee charged for the conversion
fee_currencystringCurrency in which the fee was charged
statusstringConversion status: INITIATED, TERMINATED, COMPLETED, FAILED
quoted_atstringWhen the original quote was created
created_atstringWhen the conversion was executed
updated_atstringLast update timestamp

Payload Example

{
  "id": "38af5e7e-2dd0-4af0-a03c-895662a1ea21",
  "source": "USDT",
  "target": "BTC",
  "source_amount": "68206.00",
  "target_amount": "1.0",
  "quote_id": "38af5e7e-2dd0-4af0-a03c-895662a1ea21",
  "rate": "68206.00",
  "fee_amount": "341.03",
  "fee_currency": "USDT",
  "status": "COMPLETED",
  "quoted_at": "2025-08-04T20:50:33Z",
  "created_at": "2024-06-24T14:15:22Z",
  "updated_at": "2024-06-24T14:15:22Z"
}

Error

Responses

Status CodeError CodeError Message
400bad_requestInvalid conversion ID format
403forbidden_requestUser not allowed to access this conversion
404rfq_conversion_not_foundTransaction not found

Payload Example

{
  "errors": [
    {
      "code": "rfq_conversion_not_found",
      "message": "Transaction not found"
    }
  ]
}