Retrieve a list of all available vehicle manufacturers (OEMs). Optionally filter by name.
curl --request GET \
--url https://staging.api.fryte.xyz/vehicles/info/oems \
--header 'Authorization: Bearer <token>'{
"Daimler": "01",
"MAN": "02",
"Volvo": "03",
"Scania": "05",
"DAF": "06",
"Iveco": "07",
"Renault": "08"
}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 by manufacturer name(s).
Successful Response
Mapping of manufacturer names to their codes.
curl --request GET \
--url https://staging.api.fryte.xyz/vehicles/info/oems \
--header 'Authorization: Bearer <token>'{
"Daimler": "01",
"MAN": "02",
"Volvo": "03",
"Scania": "05",
"DAF": "06",
"Iveco": "07",
"Renault": "08"
}