Get brands
const url = 'https://api-uat.flinkey.de/v3/brands';const options = { method: 'GET', headers: {'flinkey-API-Key': '<flinkey-API-Key>', Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api-uat.flinkey.de/v3/brands \ --header 'Authorization: Bearer <token>' \ --header 'flinkey-API-Key: <flinkey-API-Key>'Purpose
Retrieve available vehicle brands for keyfob matching.
The keyfob area helps determine which key fits to a car.
Use this operation as the first lookup step when a partner or operational backend needs to identify available keyfob data by vehicle brand.
The response is a list of brand names.
When to use this operation
Use this operation when the partner backend or operational backend needs to retrieve available brands before looking up matching keys.
Typical situations:
- preparing a keyfob selection workflow,
- supporting operational keybed or keyfob matching,
- allowing a user or support agent to select a vehicle brand,
- validating whether a vehicle brand is available in the keyfob data,
- preparing a follow-up call to retrieve keys of a specific brand.
For standard access flows, partner backends usually work primarily with Car, User and Assignment.
Use keyfob operations for key matching, setup and support workflows.
Validation notes
- The request succeeded with
200 OKwithout aCustomer-IDheader. - The response was a direct array of uppercase brand-name strings.
$top,$skip,$orderby=$it descand$filter=$it eq 'BMW'were validated successfully.- Brand names can contain spaces and must be URL-encoded when used as the
brandpath parameter. - Case-insensitive matching was not validated and must not be assumed.
Async behavior
Synchronous.
The brand list is returned directly in the API response.
Webhook result
No.
This operation does not produce a webhook result.
Security notes
Never log:
flinkey-API-Key,- bearer token,
- full request headers.
Use placeholders in documentation, examples, screenshots and AI prompts.
For standard partner integrations, the mobile app must not receive API Manager credentials, backend bearer tokens or the flinkey-API-Key.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Header Parameters
Section titled “Header Parameters”Not required for this operation
Responses
Section titled “Responses”Brands were retrieved successfully
object
Vehicle brand name
Example
[ "Volkswagen"]Invalid subscription key or missing / invalid access token
Recommended handling: Check flinkey-API-Key, bearer token and environment configuration
Server-side error
Recommended handling: Retry later if appropriate and escalate if persistent
