> For the complete documentation index, see [llms.txt](https://docs.gem-suite.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.gem-suite.com/api-reference/resources/vehicles/brands.md).

# Brands

## List all vehicle brands

<mark style="color:blue;">`GET`</mark> `https://app.gem-books.com/api/`vehicles\_brands

This endpoint allows you to get the list of your vehicle brands.&#x20;

#### Headers

| Name                                            | Type   | Description                  |
| ----------------------------------------------- | ------ | ---------------------------- |
| Authorization<mark style="color:red;">\*</mark> | string | Bearer Token                 |
| Accept                                          | string | Should be `application/json` |

{% tabs %}
{% tab title="200: OK " %}

```javascript
{
    // Response
}
```

{% endtab %}
{% endtabs %}

## List a specific vehicle brand

<mark style="color:blue;">`GET`</mark> `https://app.gem-books.com/api/`vehicles\_brands`/:brand`

This endpoint allows you to get one specific brand.&#x20;

#### Headers

| Name                                               | Type   | Description                  |
| -------------------------------------------------- | ------ | ---------------------------- |
| Authentification<mark style="color:red;">\*</mark> | string | Bearer Token                 |
| Accept                                             | string | Should be `application/json` |

{% tabs %}
{% tab title="200: OK " %}

```javascript
{
    // Response
}
```

{% endtab %}
{% endtabs %}

## Create a vehicle brand

<mark style="color:green;">`POST`</mark> `https://app.gem-books.com/api/`vehicles\_brands

#### Headers

| Name             | Type   | Description                  |
| ---------------- | ------ | ---------------------------- |
| Authentification | string | Bearer Token                 |
| Accept           | string | Should be `application/json` |

{% tabs %}
{% tab title="200: OK " %}

```javascript
{
    // Response
}
```

{% endtab %}
{% endtabs %}

#### Body Example

```
```

## Update a vehicle brand

<mark style="color:orange;">`PUT`</mark> `https://app.gem-books.com/api/`vehicles\_brands`/:id`

#### Headers

| Name             | Type   | Description                  |
| ---------------- | ------ | ---------------------------- |
| Authentification | string | Bearer Token                 |
| Accept           | string | Should be `application/json` |

{% tabs %}
{% tab title="200: OK " %}

```javascript
{
    // Response
}
```

{% endtab %}
{% endtabs %}

#### Body Example

```
{
    
}
```
