> For the complete documentation index, see [llms.txt](https://requestmechanic.gitbook.io/request-mechanic-api-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://requestmechanic.gitbook.io/request-mechanic-api-documentation/user/get-list-of-car-brands.md).

# Get List of Car Brands

Use the `GET /user/car-brands/` endpoint to retrieve the list of car brands available for the user.

**Parameters**

No parameters required.

**Responses**

**Response Content Type:**

* `200 OK`

| **Field** | **Type** | **Description**                                                       |
| --------- | -------- | --------------------------------------------------------------------- |
| `id`      | Integer  | ID of the car brand (read-only)                                       |
| `name`    | String   | Name of the car brand, with a max length of 255 and a min length of 1 |

**Example Response**

```json
[
  {
    "id": 1,
    "name": "Toyota"
  },
  {
    "id": 2,
    "name": "Honda"
  }
]
```
