Page cover

Accept Quote

requires auth

Use these endpoint to accept a firm price and execute your order at that price.

Accept RFQ

Upon receiving the successful response from the RFQ, you can submit an "ACCEPT" until the expiration time of the quote (RFQ). This effectively executes your order at the RFQ firm price.

POST /api/v1/routing/account/{accountId}/order/rfq/{orderId}/accept

Path Parameters:

Parameter
Type
Description

accountId *

string

your account ID

orderId *

string

the order Id generated by the RFQ. It is part of the response body.

Body Parameters:

Parameter
Type
Description

side *

string

'buy' or 'sell'

Example

POST /api/v1/routing/account/account123/order/rfq/order123/accept
// Request body
{
    "side": "sell"
}
{
    "order": {
        "orderId": "BC-YO0vz0EuaAZLR4Wny8A",
        "accountId": "t8J2Vfw8Flq4qQgvYJjuvA",
        "size": "10000 USDT",
        "source": "USDT",
        "destination": "USD",
        "type": "rfq",
        "submittedAt": "2025-06-17T21:04:33.9583369Z",
        "result": {
            "status": "filled",
            "price": "0.99954972 USDT/USD",
            "executedAt": "2025-06-17T21:04:34.0172609Z",
            "total": "9995.4972 USD"
        }
    },
    "status": "ok",
    "httpStatusCode": 200
}

Error Responses

Credit Limit - Error Responses

Last updated