Look up a vehicle ID by providing the manufacturer, model, battery capacity, and charging power. Returns the 12-digit vehicle ID string that can be used with the planner endpoints.
curl --request POST \
--url https://staging.api.fryte.xyz/vehicles/info/by_description \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"manufacturer": "Daimler",
"model": "eActros",
"battery_capacity_kwh": 600,
"charging_power_kw": 700
}
'"010160700001"Documentation Index
Fetch the complete documentation index at: https://docs.fryte.com/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Describe your vehicle to look up its ID.
Successful Response
The 12-digit vehicle ID.
"010160700001"
curl --request POST \
--url https://staging.api.fryte.xyz/vehicles/info/by_description \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"manufacturer": "Daimler",
"model": "eActros",
"battery_capacity_kwh": 600,
"charging_power_kw": 700
}
'"010160700001"