Retrieve a list of all available vehicle models. Optionally filter by manufacturer.
curl --request GET \
--url https://staging.api.fryte.xyz/vehicles/info/models \
--header 'Authorization: Bearer <token>'{
"Daimler": {
"eActros": "01"
},
"MAN": {
"eTGX": "01"
},
"Volvo": {
"FH electric": "01"
},
"Scania": {
"45 R": "01",
"P310": "02"
}
}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.
Filter models by manufacturer name(s).
Successful Response
Mapping of manufacturers to their models and codes.
Show child attributes
curl --request GET \
--url https://staging.api.fryte.xyz/vehicles/info/models \
--header 'Authorization: Bearer <token>'{
"Daimler": {
"eActros": "01"
},
"MAN": {
"eTGX": "01"
},
"Volvo": {
"FH electric": "01"
},
"Scania": {
"45 R": "01",
"P310": "02"
}
}