Settlements
Retrieve a settlement by its settlementId.
The settlementId of the settlement
Successful response
Validation Error
Unauthorized
Insufficient Privileges
Client error
Server error
GET /api/v1/settlements/{settlementId} HTTP/1.1
Host: cams.aquanow.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"settlementId": "bf89babc-b0ee-4234-8afe-47a88416a23b",
"valueDate": "2025-08-29",
"settlementStatus": "INITIATED",
"settlementType": "TRADES",
"tradeDetailPath": "/settlements/2024-01-01/bf89babc-b0ee-4234-8afe-47a88416a23b_trade_detail.json",
"customerSettlementDetailPath": "/settlements/2024-01-01/bf89babc-b0ee-4234-8afe-47a88416a23b_customer_settlement_detail.json",
"totalTrades": "3",
"totalSells": "2",
"totalBuys": "1",
"assets": [
{
"currency": "BTC",
"trades": "3",
"sells": "2",
"buys": "1",
"totalQuantity": "9.11679943",
"quantityBuys": "4.53816155",
"quantitySells": "4.57863788",
"clientSends": "0.04047633",
"clientReceives": "0"
}
]
}
Retrieve a list of settlements with optional filtering and pagination.
Filter settlements by status
Filter settlements by settlement value date lower bound, exclusive
Filter settlements by settlement value date upper bound, inclusive
When provided, specifies the last item returned in previous page, used to fetch the next page. Fetches the first page when omitted.
When provided, specifies the number of items to return in the page. Uses default page size of 10 when omitted.
Will sort the returned data using the specified field.
Specifies the sort direction for the sortField.
Successful response
Validation Error
Unauthorized
Insufficient Privileges
Client error
Server error
GET /api/v1/settlements HTTP/1.1
Host: cams.aquanow.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"after": "text",
"totalCount": "1",
"items": [
{
"settlementId": "bf89babc-b0ee-4234-8afe-47a88416a23b",
"valueDate": "2025-08-29",
"settlementStatus": "INITIATED",
"settlementType": "TRADES",
"tradeDetailPath": "/settlements/2024-01-01/bf89babc-b0ee-4234-8afe-47a88416a23b_trade_detail.json",
"customerSettlementDetailPath": "/settlements/2024-01-01/bf89babc-b0ee-4234-8afe-47a88416a23b_customer_settlement_detail.json",
"totalTrades": "3",
"totalSells": "2",
"totalBuys": "1",
"assets": [
{
"currency": "BTC",
"trades": "3",
"sells": "2",
"buys": "1",
"totalQuantity": "9.11679943",
"quantityBuys": "4.53816155",
"quantitySells": "4.57863788",
"clientSends": "0.04047633",
"clientReceives": "0"
}
]
}
]
}
Last updated