After submitting an order, you can track its progress through the order server API or by monitoring on-chain events directly.Documentation Index
Fetch the complete documentation index at: https://docs.li.fi/llms.txt
Use this file to discover all available pages before exploring further.
Order Server Status
CallGET /orders/status with either the onChainOrderId or the catalystOrderId returned when you submitted the order.
Query Parameters
| Parameter | Description |
|---|---|
onChainOrderId | The on-chain order ID emitted in contract events |
catalystOrderId | The order server ID returned from POST /orders/submit (e.g. intent_qVo7_...) |
Response
The response includes the full order, any associated quote, and ameta object with status information.
Status Lifecycle
| Status | Meaning |
|---|---|
Submitted | Order received by the order server (transitional) |
Open | Order registered on-chain (transitional) |
Signed | Order signed and available for solver pickup |
Delivered | Solver has delivered assets on the destination chain |
Settled | Proof verified, locked funds released to solver. Order complete. |
Signed, Delivered, and Settled as the primary execution states. Submitted and Open may not be visible in every path.
Polling Example
Listing Orders
UseGET /orders to query multiple orders with filters.
| Parameter | Description |
|---|---|
user | Filter by initiator address |
status | Filter by order status |
nonce | Filter by nonce |
exclusiveFor | Filter by solver address |
onChainOrderId | Filter by on-chain order ID |
catalystOrderId | Filter by order server ID |
limit | Max results (1-50, default 50) |
offset | Results to skip (0-1000, default 0) |
On-Chain Events
You can also track orders directly from contract events. TheorderId is emitted as topic1 on all relevant events.
Order Opened
Output Filled (by solver)
Order Finalized (settlement complete)
Order Refunded
orderId is deterministic and computed as:
Next Steps
API Overview
Full endpoint reference and base URLs
Create and Submit Orders
Order construction and submission
Settlement
How input and output settlement works
System Overview
Full architecture of the Intent/Solver Marketplace

