Retrieve your Fast Charge order history, sorted by creation time with optional time-range and pagination filters.
Fetch your past Fast Charge orders, sorted by creation time (newest first). By default the endpoint returns the 10 most recent orders; use the query parameters to filter by time range and paginate.
This endpoint requires an API key. See Authentication for how to obtain a key and fund your internal account.
{
"total": "number",
"results": [
{
"_id": "string", // id of order
"receiver": "string", // the address that received the resource
"resource_type": "string", // the resource type, e.g. "ENERGY"
"amount": "number", // the amount of resource
"options": {
"deadline": "number", // Maximum matching time in seconds. Exceeding it cancels the order and refunds.
"max_price_accept": "number" // Only create an order when the estimated price is less than this value.
},
"charge_amount": "number", // Total payout estimated for this order
"status": "string", // status of this order
"requester": "string", // the address that owns the order
"unit_price": "number", // price unit, expressed in SUN
"is_matched": "boolean", // matched status of this order
"charge_duration_sec": "number", // rent duration, in seconds
"delegate_amount_in_sun": "number", // The amount of resource delegated
"delegate_txid": "string", // on-chain delegate transaction
"delegator": "string", // The address that delegated resource to the target address
"paid_amount_actual": "number", // Actual amount of TRX paid for this order
"repay_amount": "number" // The refunded amount, added directly to the internal account
// ...
}
]
}