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
Parameter | Type | Required | Description |
---|---|---|---|
conversion_id | string | Yes | The unique identifier of the RFQ conversion |
Example
GET https://api.bitso.com/rfq/v1/conversions/38af5e7e-2dd0-4af0-a03c-895662a1ea21
Response
Fields
Field | Type | Description |
---|---|---|
id | string | Unique conversion transaction ID |
source | string | Source currency (what was sold) |
target | string | Target currency (what was bought) |
source_amount | string | Amount of source currency converted |
target_amount | string | Amount of target currency received |
quote_id | string | Original quote ID that was executed |
rate | string | Exchange rate applied (including fees) |
fee_amount | string | Total fee charged for the conversion |
fee_currency | string | Currency in which the fee was charged |
status | string | Conversion status: INITIATED , TERMINATED , COMPLETED , FAILED |
quoted_at | string | When the original quote was created |
created_at | string | When the conversion was executed |
updated_at | string | Last 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 Code | Error Code | Error Message |
---|---|---|
400 | bad_request | Invalid conversion ID format |
403 | forbidden_request | User not allowed to access this conversion |
404 | rfq_conversion_not_found | Transaction not found |
Payload Example
{
"errors": [
{
"code": "rfq_conversion_not_found",
"message": "Transaction not found"
}
]
}
Updated 7 days ago