Aquanow CAMS v1.0 (Updated)
  • Welcome
  • Security
    • OAuth2.0
    • API Limits
  • Pagination
  • Webhooks
    • Onboarding
    • Settlements
    • Reports
    • Order
    • Execution
    • Document
  • Market Data
    • Websocket
    • Rest API
      • OHLC
  • API reference
    • Customers
      • Docs
      • Configuration
    • Trades
      • RFQ
    • Orders
    • Executions
    • Settlements
    • Transactions
    • Accounts
      • Credit
      • Balances
      • Configuration
      • Performance
    • Instruments
      • Pairs
      • Assets
    • Custody
      • Balances
      • Allocation
    • Files
    • Webhook
  • Change Log
  • Specification
  • User Guide
    • View Customers
      • Customer Onboarding
      • Upload Onboarding Docs
      • View Customer Account Balances
      • Customer Risk Groups
    • View Customer Trade Activity
    • Manage Team Members
Powered by GitBook
On this page
  1. API reference

Executions

PreviousOrdersNextSettlements

Last updated 8 months ago

GET Execution

get

Retrieve specific fill by execution ID.

Authorizations
Path parameters
executionIdstring · uuidRequired

The execution ID returned by the executeQuote endpoint

Responses
200
Successful response
application/json
400
Validation Error
401
Unauthorized
403
Insufficient Privileges
4XX
Client error
5XX
Server error
get
GET /api/v1/executions/{executionId} HTTP/1.1
Host: cams.aquanow.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "executionId": "123e4567-e89b-12d3-a456-426614174000",
  "orderId": "123e4567-e89b-12d3-a456-426614174000",
  "accountId": "123e4567-e89b-12d3-a456-426614174000",
  "executedAt": "2025-05-17T12:12:37.144Z",
  "pair": "BTC-USD",
  "side": "BUY",
  "deliverCurrency": "BTC",
  "deliverQuantity": "1.00",
  "receiveCurrency": "USD",
  "receiveQuantity": "52100.00",
  "price": "52100.00",
  "baseQuantity": "0.0016",
  "quoteQuantity": "10.74",
  "clientFeeRate": "10",
  "providerFeeRate": "10",
  "clientFeeQuantity": "52.10",
  "providerFeeQuantity": "52.10",
  "feeCurrency": "USD",
  "executionStatus": "TRADE_EXECUTED",
  "tradeDate": "2025-05-17",
  "valueDate": "2025-05-17",
  "confirmedAt": "2025-05-17T12:12:37.144Z",
  "clientReference": "text",
  "tradeTaxRate": "5",
  "clientTaxQuantity": "2.61",
  "providerTaxQuantity": "2.61"
}

GET Executions

get

Retrieve fills with optional filtering and pagination.

Authorizations
Query parameters
executionStatusstring · enumOptional

Filter executions by execution status

Possible values:
orderIdstring · uuidOptional

Filter executions by order ID.

clientReferencestringOptional

Filter executions by client provided reference parameter

accountIdstring · uuidOptional

Filter executions by account ID

tradeDateStartstring · dateOptional

Filter executions by trade date lower bound, exclusive

tradeDateEndstring · dateOptional

Filter executions by trade date upper bound, inclusive

valueDateStartstring · dateOptional

Filter executions by value date lower bound, exclusive

valueDateEndstring · dateOptional

Filter executions by value date upper bound, inclusive

afterstringOptional

When provided, specifies the last item returned in previous page, used to fetch the next page. Fetches the first page when omitted.

limitstring · integerOptional

When provided, specifies the number of items to return in the page. Uses default page size of 10 when omitted.

sortFieldstring · enumOptional

Will sort the returned data using the specified field.

Possible values:
sortDirectionstring · enumOptional

Specifies the sort direction for the sortField.

Possible values:
Responses
200
Successful response
application/json
400
Validation Error
401
Unauthorized
403
Insufficient Privileges
4XX
Client error
5XX
Server error
get
GET /api/v1/executions HTTP/1.1
Host: cams.aquanow.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "after": "text",
  "totalCount": "1",
  "items": [
    {
      "executionId": "123e4567-e89b-12d3-a456-426614174000",
      "orderId": "123e4567-e89b-12d3-a456-426614174000",
      "accountId": "123e4567-e89b-12d3-a456-426614174000",
      "executedAt": "2025-05-17T12:12:37.144Z",
      "pair": "BTC-USD",
      "side": "BUY",
      "deliverCurrency": "BTC",
      "deliverQuantity": "1.00",
      "receiveCurrency": "USD",
      "receiveQuantity": "52100.00",
      "price": "52100.00",
      "baseQuantity": "0.0016",
      "quoteQuantity": "10.74",
      "clientFeeRate": "10",
      "providerFeeRate": "10",
      "clientFeeQuantity": "52.10",
      "providerFeeQuantity": "52.10",
      "feeCurrency": "USD",
      "executionStatus": "TRADE_EXECUTED",
      "tradeDate": "2025-05-17",
      "valueDate": "2025-05-17",
      "confirmedAt": "2025-05-17T12:12:37.144Z",
      "clientReference": "text",
      "tradeTaxRate": "5",
      "clientTaxQuantity": "2.61",
      "providerTaxQuantity": "2.61"
    }
  ]
}
  • GETGET Execution
  • GETGET Executions