Skip to main content
GET
/
api
/
public
/
orders
cURL
curl --request GET \
  --url https://api.lidian.finance/api/public/orders \
  --header 'x-api-key: <api-key>'
{
  "status": "success",
  "data": {
    "orders": [
      {
        "id": "<string>",
        "status": "<string>",
        "createdAt": "<string>",
        "updatedAt": "<string>",
        "offerer": "<string>",
        "recipient": "<string>",
        "inputAmount": "<string>",
        "outputAmount": "<string>",
        "inputToken": "<string>",
        "outputToken": "<string>",
        "inputChain": "<string>",
        "outputChain": "<string>",
        "srcChainTxHash": "<string>",
        "dstChainTxHash": "<string>",
        "settlementTxHash": "<string>",
        "failureReason": "<string>",
        "source": "order"
      }
    ]
  },
  "total": 123,
  "page": 123,
  "pageSize": 123
}
List recent public orders. No authentication required.

Authorizations

x-api-key
string
header
required

Query Parameters

address
string

Filter by account address

page
integer
default:1

Page number

pageSize
integer
default:25

Number of results per page

Response

200 - application/json

Public orders retrieved successfully

status
enum<string>
Available options:
success
data
object
total
number
page
number
pageSize
number