Page cover

Request Quote

requires auth

Use these endpoint to request a firm price.

RFQ

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

Path Parameters:

Parameter
Type
Description

accountId *

string

your account ID

Body Parameters:

Parameter
Type
Description

assetPair *

string

the instrument you want to quote

size *

string

the size to be quoted, in base or quote units

clientOrderId

string

optional arbitrary data provided by the client, limited to 1024 characters

Example

POST /api/v1/routing/account/account123/order/rfq
// Request body
{
    "assetPair": "USDT/USD",
    "size": "10000 USDT",
    "clientOrderId": "rfq-test-1"
}
{
    "orderId": "BC-YO0vz0EuaAZLR4Wny8A",
    "buy": {
        "price": "1.00105027 USDT/USD",
        "source": "10010.5027 USD",
        "destination": "10000 USDT",
        "expiresAt": "2025-06-17T21:04:38.8196190Z"
    },
    "sell": {
        "price": "0.99954972 USDT/USD",
        "source": "10000 USDT",
        "destination": "9995.4972 USD",
        "expiresAt": "2025-06-17T21:04:38.8196190Z"
    },
    "status": "ok",
    "httpStatusCode": 200
}

Error Responses

ClientOrderId over max length

Last updated