Skip to main content
GET
/
vehicles
/
info
/
{vehicle_id}
Get vehicle details
curl --request GET \
  --url https://staging.api.fryte.xyz/vehicles/info/{vehicle_id} \
  --header 'Authorization: Bearer <token>'
[
  {
    "vehicle_id": "010160700001",
    "manufacturer": "Daimler",
    "model": "eActros",
    "battery_capacity_kwh": 600,
    "charging_power_kw": 700,
    "mcs_charging_power_kw": null
  }
]

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.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

vehicle_id
string
required

The 12-digit vehicle identifier.

Response

Successful Response

vehicle_id
string
required

The 12-digit vehicle identifier.

manufacturer
string
required

Vehicle manufacturer name.

model
string
required

Vehicle model name.

battery_capacity_kwh
number
required

Usable battery capacity in kilowatt-hours.

charging_power_kw
number
required

Peak CCS charging power in kilowatts.

mcs_charging_power_kw
number | null

MCS charging power in kilowatts, if supported.