For the complete documentation index, see llms.txt. This page is also available as Markdown.

Track Order

Check the matching status of one or more Fast Charge orders by their order IDs.

After creating Fast Charge orders, use this endpoint to check their status — whether each order is still waiting to be matched or has already been matched.

This endpoint requires an API key. See Authentication for how to obtain a key and fund your internal account.

Endpoint

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

Rate limit: 1 request per 2 seconds.

Headers

Name
Type
Description

apikey*

String

TronSave API key associated with your internal account.

Request body

Name
Type
Description

order_ids

Array

Array of order IDs. A list of order IDs that have been created and need their status checked.

Request body example

{
    "order_ids": [
        "673c17a3129f1881382e98e2",
        "673c17a3129f1881382e98e3"
    ]
}

Response

Success

Errors

This endpoint authenticates with the apikey header.

401 Unauthorized — the apikey header is missing:

401 Unauthorized — the API key is invalid:

400 Bad Request — a required field is missing or invalid. The message names the offending field:

Request examples

Next steps

Last updated