Skip to main content
GET
/
organisations
/
{organisationID}
/
virtual-assets
/
{virtualAssetID}
/
state-of-charge
/
projected
Get the projected state of charge of a virtual asset.
curl --request GET \
  --url https://api.trlyr.com/organisations/{organisationID}/virtual-assets/{virtualAssetID}/state-of-charge/projected \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --data '{}'
{
  "stateOfChargePercentageTimeseries": [
    {
      "boundaries": {
        "lower": 0,
        "upper": 100
      },
      "soc": 50,
      "time": "2023-11-11T14:30:00Z"
    }
  ]
}

Headers

Authorization
string
default:Bearer <access token value>
required

Access token

Path Parameters

organisationID
string
required

Organisation ID

virtualAssetID
string
required

Virtual Asset ID

Query Parameters

start
string
required

Query start time

end
string
required

Query end time

Body

application/json

The body is of type object.

Response

OK

stateOfChargePercentageTimeseries
object[]
required
Last modified on June 30, 2026