Page cover

Get Order

requires auth

Request Specific Order

Client might want to get full detail about one specific order that they know the orderId.

GET /api/v1/routing/order/account/{accountId}/order/{orderId}

Must specify the accountId and desired orderId in the request:

Path Parameters:

Path
Type
Description

accountId*

string

your account ID

orderId*

string

the order ID you want to query

Example

GET /api/v1/routing/order/account/myAccountId/order/abcd01234
{
    "order": {
        "orderId": "BJvOSN4pfU2EjPg9cUafbw",
        "ordering": 2389,
        "accountId": "Unxpb4pBV0OHYJWPxzoGng",
        "size": "372000 USDT",
        "source": "USDT",
        "destination": "USD",
        "type": "rfq",
        "submittedAt": "2025-10-16T14:15:36.1583930Z",
        "result": {
            "status": "filled",
            "price": "1.000149865 USDT/USD",
            "updatedAt": "2025-10-16T14:15:38.2370000Z",
            "total": "372055.74978 USD"
        },
        "userId": "bdb69435-ed92-4c87-8b51-049af60c6236",
        "email": "[email protected]"
    },
    "status": "ok",
    "httpStatusCode": 200
}

Last updated