Liquid API
  • Introduction
  • Version History
  • Rate Limiting
  • Authentication
  • Response Data
  • Errors
  • Pagination
  • Public Rest API
    • Product Data
    • Loan Book
    • Fees
  • Private REST API
    • Get Orders
    • Create Orders
    • Edit Orders
    • Cancel Orders
    • Executions
    • Transactions
    • Trading
    • Fiat
    • Crypto
    • Loans
    • Fee Tier
    • Accounts
  • Websocket (Liquid Tap)
    • Introduction
    • Authentication
    • Public Channels
    • Private Channels
    • Ping Pong
  • OAuth
    • OAuth
Powered by GitBook
On this page

Was this helpful?

  1. Private REST API

Executions

Get Executions

GET https://api.liquid.com/executions/me?product_id={product_id}

Get orders that were executed.

Query Parameters

Name
Type
Description

product_id

string

Filter by product ID for example 27 for ETHUSD.

{
  "models": [
    {
      "id": 1001232,
      "quantity": "0.37153179",
      "price": "390.0",
      "taker_side": "sell",
      "my_side": "sell",
      "created_at": 1457193798,
      "order_id": 2157474,
      "client_order_id": "e77b5a4f-649d-422a-aca3-e02c40a65f55"
    }
  ],
  "current_page": 1,
  "total_pages": 2
}
PreviousCancel OrdersNextTransactions

Last updated 4 years ago

Was this helpful?