DeltaDeFi
  • About
    • 👋Introduction
    • 📖Learn
      • Architecture
        • Account
        • App Vault
        • Hydra
        • Intent and Process
        • Order Book
      • Trade
        • Order Types
      • Whitepaper
  • Start Trading
    • ⚡Getting Started
      • Create Account
      • Deposit
      • Place Order
      • Cancel Order
      • Withdrawal
      • API Key / Dashboard
    • ⚙️Developers
      • Introduction
        • Base Url
        • Auth
        • Assets
      • Getting started
        • Deposit funds
        • Place a new order
        • Cancel an order
        • Withdraw funds
      • API Documentation
        • Account
          • Create new api key
          • Build deposit transaction
          • Submit deposit transaction
          • Deposit records
          • Withdrawal records
          • Order records
          • Build withdrawal transaction
          • Submit withdrawal transaction
          • Balances
        • App
          • Get mock USDX (testnet only)
          • Submit USDX transaction (testnet only)
        • Market
          • Market Price
          • Market Depth
          • Aggregated trades
        • Order
          • Build order transaction
          • Submit order Transaction
          • Build cancel Order Transaction
          • Submit cancel order transaction
      • Websocket Endpoints
        • Account streams
        • Market price streams
        • Market depth streams
      • SDK
        • Typescript
        • Python
  • FAQ
    • General
    • Product
    • Cardano
    • Disclaimer
Powered by GitBook
On this page
  1. Start Trading
  2. Developers
  3. API Documentation
  4. Account

Order records

PreviousWithdrawal recordsNextBuild withdrawal transaction

Last updated 2 months ago

⚙️

Get order records

get

Get order records

Query parameters
statusstringRequired

enum:open,closed

Header parameters
X-API-KEYstringRequired

API Key

Responses
200
OK
application/json
400
Bad Request
application/json
401
Unauthorized
application/json
500
Internal Server Error
application/json
get
GET /accounts/order-records?status=text HTTP/1.1
Host: 
X-API-KEY: text
Accept: */*
{
  "orders": [
    {
      "create_time": 1,
      "executed_price": 1,
      "executed_qty": "text",
      "fee_charged": "text",
      "fee_unit": "text",
      "fills": [
        {
          "counter_party_order_id": "text",
          "create_time": 1,
          "execution_price": 1,
          "fee_amount": "text",
          "fee_unit": "text",
          "filled_amount": "text",
          "id": "text",
          "order_id": "text",
          "role": "maker"
        }
      ],
      "order_id": "text",
      "orig_qty": "text",
      "price": 1,
      "side": "buy",
      "slippage": "text",
      "status": "text",
      "symbol": "ADAUSDX",
      "type": "market",
      "update_time": 1
    }
  ]
}