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 } }
Get orders for authenticated user
Filter by order status
Page number
Number of results per page
Filter by account type (moneyMover or liquidityProvider)
Include quote data in response
Orders retrieved successfully
Show child attributes