Skip to main content
GET
/
api
/
v1
/
orders
/
{order_id}
Get Order
curl --request GET \
  --url https://api.example.com/api/v1/orders/{order_id}

Get Order

Returns the current status and full details of an energy or bandwidth order.

Path parameters

order_id
number
required
Order ID — the id returned by Buy Energy or Buy Bandwidth.

Response

Returns the full order object including status, type, volume, price_trx, delegate_txid, and timestamps.

Order statuses

StatusDescription
pendingOrder received, delegation in progress
filledEnergy or bandwidth successfully delegated
failedDelegation failed
reclaimedBandwidth returned after the rental period (bandwidth orders only)

Example

curl https://api.tronrental.com/v1/orders/12345 \
  -H "X-API-Key: your_api_key"
Response
{
  "id": 12345,
  "type": "energy",
  "target_address": "TRecipientAddress...",
  "volume": 65000,
  "duration": "1h",
  "price_trx": "1.79",
  "status": "filled",
  "delegate_txid": "a1b2c3d4e5f6...",
  "undelegate_txid": null,
  "reclaim_at": null,
  "source": "api",
  "created_at": "2026-06-10T04:30:00Z"
}