Skip to main content
GET
/
api
/
v1
/
orders
cURL
curl --request GET \
  --url https://api.lidian.finance/api/v1/orders \
  --header 'x-api-key: <api-key>'
{
  "message": "<string>",
  "data": {
    "orders": [
      {
        "orderId": "<string>",
        "quoteId": "<string>",
        "signature": "<string>",
        "status": "created",
        "moneyMoverAccountId": "<string>",
        "liquidityProviderAccountId": "<string>",
        "details": {},
        "createdAt": "<string>",
        "updatedAt": "<string>",
        "completedAt": "<string>",
        "failureReason": "<string>",
        "createdBy": "<string>",
        "updatedBy": "<string>",
        "metadata": {},
        "quote": {}
      }
    ],
    "total": 123,
    "page": 123,
    "pageSize": 123,
    "totalPages": 123
  }
}
List orders for the authenticated account.

Authorizations

x-api-key
string
header
required

Query Parameters

status
string

Filter by order status

page
integer
default:1

Page number

pageSize
integer
default:50

Number of results per page

accountType
string

Filter by account type (moneyMover or liquidityProvider)

includeQuotes
boolean
default:false

Include quote data in response

Response

200 - application/json

Orders retrieved successfully

message
string
data
object