Get Order
Returns full details for a single order, including the fills array with on-chain transaction data and verification status for each provider execution.
GET
/api/v1/orders/:idRequires authenticationPath parameters
idstringREQUIREDOrder UUID
Request examples
curl https://merx.exchange/api/v1/orders/f47ac10b-58cc-4372-a567-0e02b2c3d479 \
-H "X-API-Key: your_api_key"Response
200Full order with fills
{
"id": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
"status": "FILLED",
"resource_type": "ENERGY",
"order_type": "MARKET",
"amount": 100000,
"duration_sec": 86400,
"target_address": "TKVSaJQDWeKFSEXmA5ygozDhrq1RLNqxAP",
"max_price_sun": 40,
"total_cost_sun": 3200000,
"total_fee_sun": 0,
"fills": [
{
"provider": "sohu",
"amount": 100000,
"price_sun": 32,
"cost_sun": 3200000,
"tx_id": "a1b2c3d4e5f6...",
"status": "CONFIRMED",
"verified": true,
"tronscan_url": "https://tronscan.org/#/transaction/a1b2c3d4e5f6..."
}
],
"created_at": "2026-03-29T12:05:00.000Z",
"filled_at": "2026-03-29T12:05:03.000Z"
}Response fields
idstringOrder UUIDstatusstringPENDING, EXECUTING, FILLED, or FAILEDresource_typestringENERGY or BANDWIDTHorder_typestringMARKET, LIMIT, PERIODIC, or BROADCASTamountnumberRequested resource amountduration_secnumberRental duration in secondstarget_addressstringReceiving TRON addresstotal_cost_sunnumber | nullTotal cost in SUN (set after fill)total_fee_sunnumber | nullFee charged in SUN (currently 0 for all users)fillsFill[]Array of individual provider executionscreated_atstringISO 8601 creation timestampfilled_atstring | nullISO 8601 completion timestampFill object
Each entry in the fills array represents a single provider execution. For BROADCAST orders, there may be multiple fills from different providers.
Fill fields
providerstringREQUIREDProvider that executed this fill
amountnumberREQUIREDResource units delivered in this fill
price_sunnumberREQUIREDPrice per unit in SUN
cost_sunnumberREQUIREDTotal cost of this fill in SUN
tx_idstringREQUIREDOn-chain transaction hash
statusstringREQUIREDCONFIRMED or FAILED
verifiedbooleanREQUIREDWhether delegation was verified on-chain
tronscan_urlstringREQUIREDDirect link to the transaction on TronScan
INFO
The verified field indicates whether the delegation-verifier service has confirmed the resource delegation on-chain. Fills may briefly show verified as false while awaiting chain confirmation.
404Order not found
{
"error": {
"code": "NOT_FOUND",
"message": "Order not found"
}
}