Create fast charge orders

To use this feature you must have the API key. Read here to view how to get our API key.

Create fast charge orders with API key

POST https://api.tronsave.io/v0/fast-charge-order-request

Create fast charge order by API key

Rate limit: 1 request per 2 seconds

Headers

Name
Type
Description

apikey*

String

Tronsave API key that present for the internal account

Request Body

Name
Type
Description

amount

Number

Amount of resource want to buy

duration_sec

Number

The duration of the rent resource, the time unit is equal second.

max_price_accept

Number

Only create an order when the estimated price is less than this value.

receivers

Array

Array receiver data. A list of wallet addresses receiving energy.

deadline

Number

Maximum matching time in seconds. Exceeding it cancels the order and refunds.

return array of order ids if success

{
    "order_ids": [
        "order_id_1"
        "order_id_2"
        ...
    ]
}

Example

Last updated