latestOpenAPI 3.1.12026-08-107910.9 KB

be934981453a

Orders

Get Order Confirmation

Check the status of an order execution. Returns whether the order was executed successfully, is pending, or was reverted on-chain.

get/order-confirmation

Query parameters

order_idstring required

Order ID (RFQ ID) from the /rfq endpoint. Format: RFQ-XXXXXXXXXXXXX

Response

Order confirmation status

block_numberinteger nullable

Block number where the transaction was confirmed

etherscan_linkstring nullable

Block explorer link to view the transaction

order_idstring required

Order ID (RFQ ID)

status'pending' | 'confirmed' | 'reverted' required

Order status: pending (not yet mined), confirmed (successfully executed), or reverted (transaction failed)

tx_hashstring nullable

Transaction hash if available

Example response

{
  "block_number": 18500000,
  "etherscan_link": "https://etherscan.io/tx/0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef",
  "order_id": "RFQ-6HYXR08YOMBUS",
  "status": "confirmed",
  "tx_hash": "0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef"
}