Aquanow
Legacy
Legacy
  • About Aquanow
    • Introduction
  • VERSION DIFFERENCES
    • Latest vs Legacy
  • User Guide
    • Trading
      • Order Book
      • Submitting Orders
      • Order Types / Strategies
      • Trade Management
    • Automated Conversions
      • Autopilot
    • Deposits & Withdrawals
      • Deposits
      • Withdrawals
      • Balances
      • Transaction History
      • Approval Workflows
    • Account Management
      • CSV Exports
      • Address Management
      • IP Whitelisting
      • User List
  • Integration Guide
    • API Keys
      • Rate and API Key Limits
    • Authentication
    • Staging environment
    • Postman
    • Supported Assets and Tickers
    • Testnet and Faucet
  • API Endpoints | V1.0
    • Accounts API
      • User Balances
      • API Keys
    • Transaction API
      • Get Transactions
      • Create Transactions
      • Approvals API
      • Get Withdrawal Fee Estimate
    • Executions API
      • GET or Query Orders
      • Trading Strategies
    • Market Data API
      • Authorized Market Data
  • API Endpoints | V2.0
    • Transaction API
      • Get Transactions
    • Executions API
      • GET or Query Orders
      • Trading Strategies
  • Webhooks
    • Subscribing to Webhooks
    • Transaction Webhook
  • Websockets
    • Introduction
    • Authenticated Websockets
      • Market Data Websocket
      • Reporting Websocket
  • Data Objects & Statuses
    • Websocket Objects
    • Transaction Objects
      • Approval Objects
      • Fee Estimate Objects
    • Accounts Objects
    • Executions Objects
      • Duration Order Objects
    • Market Data Objects
    • Statuses
  • FAQs and Misc. Information
    • FAQs
    • Misc. Information
Powered by GitBook
On this page
  • Get or query orders
  • Endpoint to initiate an LIMIT/GTC/GTD request to Aquanow.
  1. API Endpoints | V2.0

Executions API

Aquanow provides execution services to end users by leveraging our aggregated market data, liquidity, and execution algorithms.

PreviousGet TransactionsNextGET or Query Orders

Last updated 3 months ago

There are several differences with V2 endpoints. Firstly, the data is encapsulated in a data payload. Secondly, there now exists a pagination object that, if applicable, will hold a startsAfter token. You can use the startsAfter token as a query parameter to query successive data, until startsAfter is null, signifying that you have reached the end of the pagination.

if startsAfter is a string while there is no data in the payload, it means there is more data to be fetched, even if it seems to be returning an empty array. Do not stop calling until the startsAfter token has an empty string (""). Do not rely on the data received to determine if you should keep fetching.

Get or query orders

GET https://api.aquanow.io/trades/v2/order

To view example requests for this endpoint, visit Aquanow's documentation.

NOTE: The limit for this endpoint is a maximum payload of 5 mb. For larger payloads, use the or change the time range parameters to query for less results.

Query Parameters

Name
Type
Description

-

-

Query all orders if no query parameters are provided.

orderId

String

Query by order ID.

accountId

String

Query orders by account.

startTime/endTime

Number

Query by time range, requires both startTime and endTime.

expirationStartTime/expirationEndTime

Number

Query by expiration time range, requires both expirationStartTime and expirationEndTime.

openOrders=true

Bool

Query for open orders

startsAfter

String

Pagination token used to fetch extra data

usernameRef

String

Query by usernameRef

Headers

Name
Type
Description

x-api-key*

String

{{x-api-key}}

API Auth Key

x-signature*

String

32c92660f65cbb78d0eaf9a4361fb6b0a2cb8bb4c40f531e9974a0afc12d9a328b5ff621w544d242ee9ba1dfa799c85a

Signature created using your API secret

x-nonce*

String

1657731573930

Timestamp in millisecond

{
  "pagination": {
    "startsAfter": "",
    "limit": 1000
  },
  "data": {
    "orderId": "905910d8-ad90-42f6-91af-910defeae2ad",
    "remainingQtyBase": 0,
    "tradeSize": 0.1,
    "exchangeOrderId": "-",
    "tradePriceAvg": 71874.9,
    "fillPct": 100,
    "finalizeReturnedQtyBase": 0,
    "tradeSide": "buy",
    "exchangeClientOrderId": "-",
    "tradeTime": 1712618352305,
    "childOrderCount": 0,
    "itemDateTime": 1712618353772,
    "baseSymbol": "USD",
    "strategy": "RFQ",
    "fillQtyQuote": 0.1,
    "usernameRef": "-",
    "fillQtyBase": 7187.49,
    "accountId": "CA1000101R",
    "exchangePair": "aquax-BTC-USD",
    "symbol": "BTC-USD",
    "tradeStatus": "COMPLETE",
    "commissionRate": 0,
    "createdAt": 1712618352379,
    "message": "-",
    "priceLimit": 71874.9,
    "quoteSymbol": "BTC",
    "remainingQtyQuote": 0,
    "orderIdParent": "905910d8-ad90-42f6-91af-910defeae2ad",
    "orderType": "parentOrder",
    "updatedAt": 1712618353772,
    "exchange": "aquax",
    "tradeDuration": 30,
    "username": "helloWorld",
    "fillFeeQuoteAqua": 0
  }
}
{
  "pagination": {
    "startsAfter": "",
    "limit": 1000
  },
  "data": [
    {
      "orderId": "905910d8-ad90-42f6-91af-910defeae2ad",
      "remainingQtyBase": 0,
      "tradeSize": 0.1,
      "exchangeOrderId": "-",
      "tradePriceAvg": 71874.9,
      "fillPct": 100,
      "finalizeReturnedQtyBase": 0,
      "tradeSide": "buy",
      "exchangeClientOrderId": "-",
      "tradeTime": 1712618352305,
      "childOrderCount": 0,
      "itemDateTime": 1712618353772,
      "baseSymbol": "USD",
      "strategy": "RFQ",
      "fillQtyQuote": 0.1,
      "usernameRef": "-",
      "fillQtyBase": 7187.49,
      "accountId": "CA1000051R",
      "exchangePair": "aquax-BTC-USD",
      "symbol": "BTC-USD",
      "tradeStatus": "COMPLETE",
      "commissionRate": 0,
      "createdAt": 1712618352379,
      "message": "-",
      "priceLimit": 71874.9,
      "quoteSymbol": "BTC",
      "remainingQtyQuote": 0,
      "orderIdParent": "905910d8-ad90-42f6-91af-910defeae2ad",
      "orderType": "parentOrder",
      "updatedAt": 1712618353772,
      "exchange": "aquax",
      "tradeDuration": 30,
      "username": "helloWorld",
      "fillFeeQuoteAqua": 0
    },
    {
      "orderId": "b6cf97fb-f906-4fef-a12e-a320e34c2527",
      "remainingQtyBase": 0,
      "tradeSize": 100,
      "exchangeOrderId": "-",
      "tradePriceAvg": 1,
      "fillPct": 100,
      "finalizeReturnedQtyBase": 0,
      "tradeSide": "buy",
      "exchangeClientOrderId": "-",
      "tradeTime": 1712615969854,
      "childOrderCount": 0,
      "itemDateTime": 1712615971165,
      "baseSymbol": "USD",
      "strategy": "RFQ",
      "fillQtyQuote": 100,
      "usernameRef": "-",
      "fillQtyBase": 100,
      "accountId": "CA1000051R",
      "exchangePair": "aquax-USDT-USD",
      "symbol": "USDT-USD",
      "tradeStatus": "COMPLETE",
      "commissionRate": 0,
      "createdAt": 1712615969901,
      "message": "-",
      "priceLimit": 1,
      "quoteSymbol": "USDT",
      "remainingQtyQuote": 0,
      "orderIdParent": "b6cf97fb-f906-4fef-a12e-a320e34c2527",
      "orderType": "parentOrder",
      "updatedAt": 1712615971165,
      "exchange": "aquax",
      "tradeDuration": 30,
      "username": "helloWorld",
      "fillFeeQuoteAqua": 0
    },
    {
      "orderId": "e76ed244-6a72-464c-beff-6f57f7c7978c",
      "remainingQtyBase": 0,
      "tradeSize": 0.0836481758,
      "exchangeOrderId": "-",
      "tradePriceAvg": 71729,
      "fillPct": 100,
      "finalizeReturnedQtyBase": 0,
      "tradeSide": "sell",
      "exchangeClientOrderId": "-",
      "tradeTime": 1712615254394,
      "childOrderCount": 0,
      "itemDateTime": 1712615255735,
      "baseSymbol": "BTC",
      "strategy": "RFQ",
      "fillQtyQuote": 6000,
      "usernameRef": "-",
      "fillQtyBase": 0.0836481758,
      "accountId": "CA1000051R",
      "exchangePair": "aquax-BTC-USD",
      "symbol": "BTC-USD",
      "tradeStatus": "COMPLETE",
      "commissionRate": 0,
      "createdAt": 1712615254433,
      "message": "-",
      "priceLimit": 71729,
      "quoteSymbol": "USD",
      "remainingQtyQuote": 0,
      "orderIdParent": "e76ed244-6a72-464c-beff-6f57f7c7978c",
      "orderType": "parentOrder",
      "updatedAt": 1712615255735,
      "exchange": "aquax",
      "tradeDuration": 30,
      "username": "helloWorld",
      "fillFeeQuoteAqua": 0
    },
    {
      "orderId": "242aa1e3-3bc4-4725-a4ec-781739cd8431",
      "remainingQtyBase": 0,
      "tradeSize": 1,
      "exchangeOrderId": "-",
      "tradePriceAvg": 3689.65,
      "fillPct": 100,
      "finalizeReturnedQtyBase": 0,
      "tradeSide": "sell",
      "exchangeClientOrderId": "-",
      "tradeTime": 1712610345382,
      "childOrderCount": 0,
      "itemDateTime": 1712610346741,
      "baseSymbol": "ETH",
      "strategy": "RFQ",
      "fillQtyQuote": 3689.65,
      "usernameRef": "-",
      "fillQtyBase": 1,
      "accountId": "CA1000051R",
      "exchangePair": "aquax-ETH-USD",
      "symbol": "ETH-USD",
      "tradeStatus": "COMPLETE",
      "commissionRate": 0,
      "createdAt": 1712610345395,
      "message": "-",
      "priceLimit": 3689.65,
      "quoteSymbol": "USD",
      "remainingQtyQuote": 0,
      "orderIdParent": "242aa1e3-3bc4-4725-a4ec-781739cd8431",
      "orderType": "parentOrder",
      "updatedAt": 1712610346741,
      "exchange": "aquax",
      "tradeDuration": 30,
      "username": "helloWorld",
      "fillFeeQuoteAqua": 0
    },
    {
      "orderId": "8004ae83-d201-4b10-8881-364f84f7d678",
      "remainingQtyBase": 0,
      "tradeSize": 0.1,
      "exchangeOrderId": "-",
      "tradePriceAvg": 71755.72,
      "fillPct": 100,
      "finalizeReturnedQtyBase": 0,
      "tradeSide": "buy",
      "exchangeClientOrderId": "-",
      "tradeTime": 1712610305889,
      "childOrderCount": 0,
      "itemDateTime": 1712610307488,
      "baseSymbol": "USD",
      "strategy": "RFQ",
      "fillQtyQuote": 0.1,
      "usernameRef": "-",
      "fillQtyBase": 7175.572,
      "accountId": "CA1000051R",
      "exchangePair": "aquax-BTC-USD",
      "symbol": "BTC-USD",
      "tradeStatus": "COMPLETE",
      "commissionRate": 0,
      "createdAt": 1712610305967,
      "message": "-",
      "priceLimit": 71755.72,
      "quoteSymbol": "BTC",
      "remainingQtyQuote": 0,
      "orderIdParent": "8004ae83-d201-4b10-8881-364f84f7d678",
      "orderType": "parentOrder",
      "updatedAt": 1712610307488,
      "exchange": "aquax",
      "tradeDuration": 30,
      "username": "helloWorld",
      "fillFeeQuoteAqua": 0
    },
    {
      "orderId": "1848e32b-f5c8-406d-9119-62b20fc4436d",
      "remainingQtyBase": 0,
      "tradeSize": 0,
      "exchangeOrderId": "-",
      "tradePriceAvg": 107.82,
      "fillPct": 100,
      "tradeSide": "buy",
      "exchangeClientOrderId": "-",
      "tradeTime": 1703717118309,
      "childOrderCount": 0,
      "baseSymbol": "USD",
      "strategy": "FOK",
      "fillQtyQuote": 0,
      "usernameRef": "-",
      "fillQtyBase": 0,
      "accountId": "CA1000051R",
      "exchangePair": "--SOL-USD",
      "symbol": "SOL-USD",
      "tradeStatus": "CANCELLED",
      "commissionRate": 0,
      "createdAt": 1703717118312,
      "message": "Cancelled - Price not marketable",
      "priceLimit": 107.72,
      "quoteSymbol": "SOL",
      "remainingQtyQuote": 0,
      "orderIdParent": "1848e32b-f5c8-406d-9119-62b20fc4436d",
      "orderType": "parentOrder",
      "updatedAt": 1703717118312,
      "exchange": "-",
      "tradeDuration": 0,
      "username": "helloWorld",
      "fillFeeQuoteAqua": 0
    },
    {
      "orderId": "741e4cf0-44c3-457d-ad70-8c28d5f5cfa4",
      "remainingQtyBase": 0,
      "tradeSize": 1,
      "exchangeOrderId": "-",
      "tradePriceAvg": 108.03,
      "fillPct": 100,
      "finalizeReturnedQtyBase": 0,
      "tradeSide": "buy",
      "exchangeClientOrderId": "-",
      "tradeTime": 1703717081374,
      "childOrderCount": 0,
      "itemDateTime": 1703717084055,
      "baseSymbol": "USD",
      "strategy": "RFQ",
      "fillQtyQuote": 1,
      "usernameRef": "-",
      "fillQtyBase": 108.03,
      "accountId": "CA1000051R",
      "exchangePair": "aquax-SOL-USD",
      "symbol": "SOL-USD",
      "tradeStatus": "COMPLETE",
      "commissionRate": 0,
      "createdAt": 1703717081443,
      "message": "-",
      "priceLimit": 108.03,
      "quoteSymbol": "SOL",
      "remainingQtyQuote": 0,
      "orderIdParent": "741e4cf0-44c3-457d-ad70-8c28d5f5cfa4",
      "orderType": "parentOrder",
      "updatedAt": 1703717084056,
      "exchange": "aquax",
      "tradeDuration": 30,
      "username": "helloWorld",
      "fillFeeQuoteAqua": 0
    }
  ]
}
{
  "pagination": {
    "startsAfter": "",
    "limit": 1000
  },
  "data": [
    {
      "orderId": "905910d8-ad90-42f6-91af-910defeae2ad",
      "remainingQtyBase": 0,
      "tradeSize": 0.1,
      "exchangeOrderId": "-",
      "tradePriceAvg": 71874.9,
      "fillPct": 100,
      "finalizeReturnedQtyBase": 0,
      "tradeSide": "buy",
      "exchangeClientOrderId": "-",
      "tradeTime": 1712618352305,
      "childOrderCount": 0,
      "itemDateTime": 1712618353772,
      "baseSymbol": "USD",
      "strategy": "RFQ",
      "fillQtyQuote": 0.1,
      "usernameRef": "-",
      "fillQtyBase": 7187.49,
      "accountId": "CA1000051R",
      "exchangePair": "aquax-BTC-USD",
      "symbol": "BTC-USD",
      "tradeStatus": "COMPLETE",
      "commissionRate": 0,
      "createdAt": 1712618352379,
      "message": "-",
      "priceLimit": 71874.9,
      "quoteSymbol": "BTC",
      "remainingQtyQuote": 0,
      "orderIdParent": "905910d8-ad90-42f6-91af-910defeae2ad",
      "orderType": "parentOrder",
      "updatedAt": 1712618353772,
      "exchange": "aquax",
      "tradeDuration": 30,
      "username": "helloWorld",
      "fillFeeQuoteAqua": 0
    },
    {
      "orderId": "b6cf97fb-f906-4fef-a12e-a320e34c2527",
      "remainingQtyBase": 0,
      "tradeSize": 100,
      "exchangeOrderId": "-",
      "tradePriceAvg": 1,
      "fillPct": 100,
      "finalizeReturnedQtyBase": 0,
      "tradeSide": "buy",
      "exchangeClientOrderId": "-",
      "tradeTime": 1712615969854,
      "childOrderCount": 0,
      "itemDateTime": 1712615971165,
      "baseSymbol": "USD",
      "strategy": "RFQ",
      "fillQtyQuote": 100,
      "usernameRef": "-",
      "fillQtyBase": 100,
      "accountId": "CA1000051R",
      "exchangePair": "aquax-USDT-USD",
      "symbol": "USDT-USD",
      "tradeStatus": "COMPLETE",
      "commissionRate": 0,
      "createdAt": 1712615969901,
      "message": "-",
      "priceLimit": 1,
      "quoteSymbol": "USDT",
      "remainingQtyQuote": 0,
      "orderIdParent": "b6cf97fb-f906-4fef-a12e-a320e34c2527",
      "orderType": "parentOrder",
      "updatedAt": 1712615971165,
      "exchange": "aquax",
      "tradeDuration": 30,
      "username": "helloWorld",
      "fillFeeQuoteAqua": 0
    },
    {
      "orderId": "e76ed244-6a72-464c-beff-6f57f7c7978c",
      "remainingQtyBase": 0,
      "tradeSize": 0.0836481758,
      "exchangeOrderId": "-",
      "tradePriceAvg": 71729,
      "fillPct": 100,
      "finalizeReturnedQtyBase": 0,
      "tradeSide": "sell",
      "exchangeClientOrderId": "-",
      "tradeTime": 1712615254394,
      "childOrderCount": 0,
      "itemDateTime": 1712615255735,
      "baseSymbol": "BTC",
      "strategy": "RFQ",
      "fillQtyQuote": 6000,
      "usernameRef": "-",
      "fillQtyBase": 0.0836481758,
      "accountId": "CA1000051R",
      "exchangePair": "aquax-BTC-USD",
      "symbol": "BTC-USD",
      "tradeStatus": "COMPLETE",
      "commissionRate": 0,
      "createdAt": 1712615254433,
      "message": "-",
      "priceLimit": 71729,
      "quoteSymbol": "USD",
      "remainingQtyQuote": 0,
      "orderIdParent": "e76ed244-6a72-464c-beff-6f57f7c7978c",
      "orderType": "parentOrder",
      "updatedAt": 1712615255735,
      "exchange": "aquax",
      "tradeDuration": 30,
      "username": "helloWorld",
      "fillFeeQuoteAqua": 0
    },
    {
      "orderId": "242aa1e3-3bc4-4725-a4ec-781739cd8431",
      "remainingQtyBase": 0,
      "tradeSize": 1,
      "exchangeOrderId": "-",
      "tradePriceAvg": 3689.65,
      "fillPct": 100,
      "finalizeReturnedQtyBase": 0,
      "tradeSide": "sell",
      "exchangeClientOrderId": "-",
      "tradeTime": 1712610345382,
      "childOrderCount": 0,
      "itemDateTime": 1712610346741,
      "baseSymbol": "ETH",
      "strategy": "RFQ",
      "fillQtyQuote": 3689.65,
      "usernameRef": "-",
      "fillQtyBase": 1,
      "accountId": "CA1000051R",
      "exchangePair": "aquax-ETH-USD",
      "symbol": "ETH-USD",
      "tradeStatus": "COMPLETE",
      "commissionRate": 0,
      "createdAt": 1712610345395,
      "message": "-",
      "priceLimit": 3689.65,
      "quoteSymbol": "USD",
      "remainingQtyQuote": 0,
      "orderIdParent": "242aa1e3-3bc4-4725-a4ec-781739cd8431",
      "orderType": "parentOrder",
      "updatedAt": 1712610346741,
      "exchange": "aquax",
      "tradeDuration": 30,
      "username": "helloWorld",
      "fillFeeQuoteAqua": 0
    },
    {
      "orderId": "8004ae83-d201-4b10-8881-364f84f7d678",
      "remainingQtyBase": 0,
      "tradeSize": 0.1,
      "exchangeOrderId": "-",
      "tradePriceAvg": 71755.72,
      "fillPct": 100,
      "finalizeReturnedQtyBase": 0,
      "tradeSide": "buy",
      "exchangeClientOrderId": "-",
      "tradeTime": 1712610305889,
      "childOrderCount": 0,
      "itemDateTime": 1712610307488,
      "baseSymbol": "USD",
      "strategy": "RFQ",
      "fillQtyQuote": 0.1,
      "usernameRef": "-",
      "fillQtyBase": 7175.572,
      "accountId": "CA1000051R",
      "exchangePair": "aquax-BTC-USD",
      "symbol": "BTC-USD",
      "tradeStatus": "COMPLETE",
      "commissionRate": 0,
      "createdAt": 1712610305967,
      "message": "-",
      "priceLimit": 71755.72,
      "quoteSymbol": "BTC",
      "remainingQtyQuote": 0,
      "orderIdParent": "8004ae83-d201-4b10-8881-364f84f7d678",
      "orderType": "parentOrder",
      "updatedAt": 1712610307488,
      "exchange": "aquax",
      "tradeDuration": 30,
      "username": "helloWorld",
      "fillFeeQuoteAqua": 0
    }
  ]
}
{
  "pagination": {
    "startsAfter": "",
    "limit": 1000
  },
  "data": []
}
{
    "errors": [
        {
            "id": "19a58d88-f605-457a-be64-3e13242e37e1",
            "message": "Unauthorized"
        }
    ]
}

Endpoint to initiate an LIMIT/GTC/GTD request to Aquanow.

POST https://api.aquanow.io/trades/v2/order

NOTE: Either deliverQuantity or receiveQuantity must be specified. If both are specified, receiveQuantity will be considered for sell orders, and deliverQuantity will be considered for buy orders.

If order is not filled, the request will return a 200 response with receiveQuantity and deliverQuantity set to 0.

Headers

Name
Type
Description

x-api-key*

String

{{x-api-key}}

API Auth Key

x-signature*

String

49c6260c194f4d7ed5cb917dc70b9821673246b2abc1cf28f05df6a75fd24181e00f8e57b321d15ae45db58b3bffe27a

Signature created using your API secret

x-nonce*

Number

1618307861949

Timestamp in millisecond

Content-Type*

String

application/json

Request Body

Name
Type
Description

strategy*

String

"LIMIT", "GTC" or "GTD"

accountId*

String

Identifier for account the order will be applied to.

ticker*

String

e.g., BTC-CAD

Currency pair

tradeSide*

String

"buy" or "sell"

priceLimit*

String

Limit price of a ticker symbol, determined by tradeSide and deliverQuantity/receiveQuantity

deliverQuantity*

String

NOTE: specify either deliverQuantity or receiveQuantity.

Quantity of currency delivered by user based on the ticker and tradeSide.

For example, if ticker is BTC-USD and tradeSide is buy, then the delivered currency is USD. If tradeSide is sell, the delivered currency is BTC.

receiveQuantity*

String

NOTE: specify either deliverQuantity or receiveQuantity.

Quantity of currency received by user based on the ticker and tradeSide.

For example, if ticker is BTC-USD and tradeSide is buy, then the received currency is BTC. If tradeSide is sell, the received currency is USD.

expirationTime*

Number

NOTE: only required for GTD orders.

e.g., 1669972404350

Expiration time in milliseconds of when the pre-existing order will expire. Expiration time must be within 90 days of order creation.

usernameRef*

String

A new reference string for sub-accounts. Must be less than 64 characters, cannot contain special characters.

{
  "type": "limitOrderAck",
  "data": {
    "accountId": "CA1264810R",
    "quoteId": "44fa0d89-0b1c-4179-8a29-c4cd08030ba0",
    "quoteTime": 1738110845616,
    "expireTime": 1738197245616,
    "ticker": "BTC-USD",
    "tradeSide": "buy",
    "receiveCurrency": "BTC",
    "receiveQuantity": "0.02000000",
    "deliverCurrency": "USD",
    "deliverQuantity": "2020.93",
    "price": "102536.06"
  }
}
{
  "type": "limitOrderAck",
  "data": {
    "accountId": "CA1264810R",
    "quoteId": "34bb8cea-314c-4fc0-83c8-fb5063d66a8f",
    "quoteTime": 1738091795908,
    "expireTime": 1738178195908,
    "ticker": "BTC-USD",
    "tradeSide": "sell",
    "receiveCurrency": "USD",
    "receiveQuantity": "1526847.30",
    "deliverCurrency": "BTC",
    "deliverQuantity": "15.00000000",
    "price": "102536.06"
  }
}
{
  "type": "gtcOrderAck",
  "data": {
    "accountId": "CA1264810R",
    "quoteId": "9ce058ce-1cc3-47fe-8498-e2f565a52481",
    "quoteTime": 1738111104719,
    "expireTime": 1745887104719,
    "ticker": "BTC-USD",
    "tradeSide": "sell",
    "receiveCurrency": "USD",
    "receiveQuantity": "2012.74",
    "deliverCurrency": "BTC",
    "deliverQuantity": "0.02000000",
    "price": "102028.52"
  }
}
{
  "type": "gtcOrderAck",
  "data": {
    "accountId": "CA1264810R",
    "quoteId": "9ce058ce-1cc3-47fe-8498-e2f565a52481",
    "quoteTime": 1738111104719,
    "expireTime": 1745887104719,
    "ticker": "BTC-USD",
    "tradeSide": "sell",
    "receiveCurrency": "USD",
    "receiveQuantity": "2012.74",
    "deliverCurrency": "BTC",
    "deliverQuantity": "0.02000000",
    "price": "102028.52"
  }
}
{
  "type": "gtdOrderAck",
  "data": {
    "accountId": "CA1264810R",
    "quoteId": "0c317868-3207-4f94-ad5a-47635cf00a85",
    "quoteTime": 1738092098363,
    "expireTime": 1738351211363,
    "ticker": "BTC-USD",
    "tradeSide": "buy",
    "receiveCurrency": "BTC",
    "receiveQuantity": "0.01000000",
    "deliverCurrency": "USD",
    "deliverQuantity": "1023.15",
    "price": "102299.79"
  }
}
{
  "type": "gtdOrderAck",
  "data": {
    "accountId": "CA1264810R",
    "quoteId": "566b0333-c7d4-4086-8c04-5ab3a6a29280",
    "quoteTime": 1738092132480,
    "expireTime": 1738351211480,
    "ticker": "BTC-USD",
    "tradeSide": "sell",
    "receiveCurrency": "USD",
    "receiveQuantity": "100.00",
    "deliverCurrency": "BTC",
    "deliverQuantity": "0.00098161",
    "price": "102299.79"
  }
}
{
  "errors": [
    {
      "id": "ea640ecc-0b9f-4857-9535-a45c0a6753da",
      "message": "Insufficient Trade Credit"
    }
  ]
}
{
  "errors": [
    {
      "id": "ea640ecc-0b9f-4857-9535-a45c0a6753da",
      "message": "expirationTime should be within 90 days from now: 1869972405009"
    }
  ]
}
{
  "errors": [
    {
      "id": "60a6a307-d980-43f5-b2cb-9b7d6c6af935",
      "message": "data must have required property 'expirationTime'"
    }
  ]
}
{
  "errors": [
    {
      "id": "60a6a307-d980-43f5-b2cb-9b7d6c6af935",
      "message": "data/ticker must be equal to one of the allowed values"
    }
  ]
}
{
  "errors": [
    {
      "id": "60a6a307-d980-43f5-b2cb-9b7d6c6af935",
      "message": "Trade size must be bigger than minimum size 1e-7. You submitted: 1e-9"
    }
  ]
}
{
  "errors": [
    {
      "id": "60a6a307-d980-43f5-b2cb-9b7d6c6af935",
      "message": "data/tradeSide must be equal to one of the allowed values"
    }
  ]
}
{
  "errors": [
    {
      "id": "60a6a307-d980-43f5-b2cb-9b7d6c6af935",
      "message": "Access Denied"
    }
  ]
}
{
  "errors": [
    {
      "id": "60a6a307-d980-43f5-b2cb-9b7d6c6af935",
      "message": "User not authorized for LIMIT"
    }
  ]
}

Returns an .

Returns an array of .

Returns an array of .

To view example requests for this endpoint, visit Aquanow's documentation.

Returns an .

Returns an .

Returns an .

Returns an .

Returns an .

Returns an .

Returns an .

Postman
ExecutionsObject
ExecutionsObject
ExecutionsObject
ExecutionsObject
ExecutionsObject
ExecutionsObject
Postman
v2 endpoint
OrdersV2Object
OrdersV2Object
OrdersV2Object
ExecutionsObject