Skip to main content
POST
/
vehicles
/
info
/
by_description
Get vehicle ID by description
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.

Authorizations

Authorization
string
header
required

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

Body

application/json

Describe your vehicle to look up its ID.

manufacturer
string
required

Vehicle manufacturer name (e.g. Daimler, MAN, Volvo).

model
string
required

Vehicle model name (e.g. eActros, eTGX, FH electric).

battery_capacity_kwh
number
required

Usable battery capacity in kilowatt-hours.

charging_power_kw
number
required

Peak CCS charging power in kilowatts.

Response

Successful Response

The 12-digit vehicle ID.

Example:

"010160700001"