Get History

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.

Endpoint

GET https://api.tronsave.io/v0/fast-charge-order-history

Rate limit: 1 request per 2 seconds.

Headers

Name
Type
Description

apikey*

String

TronSave API key associated with your internal account.

Query parameters

Name
Type
Description

from

String

Start time in milliseconds.

to

String

End time in milliseconds.

page

Integer

Page index, starting from 0. Default: 0.

pageSize

Integer

Number of orders per page. Default: 10.

Example request URL

GET https://api.tronsave.io/v0/fast-charge-order-history?from=1732066773000&to=1732073973000&page=0&pageSize=10

Response

Success

The response contains the total number of matching orders and an array of order objects.

Success (example)

Errors

This endpoint authenticates with the apikey header. Authentication and validation failures return the following bodies.

401 Unauthorized — the apikey header is missing:

401 Unauthorized — the supplied API key is invalid:

400 Bad Request — a query parameter fails schema validation (the message names the offending field):

429 Too Many Requests — the rate limit (1 request per 2 seconds for this endpoint) is exceeded:

Request examples

Next steps

Last updated