> 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/create-user-car-brands.md).

# Create User Car Brands

Use the `POST /user/car-brands/create/` endpoint to create a new car brand.

**Parameters**

| **Name**   | **Description**                                                                         |
| ---------- | --------------------------------------------------------------------------------------- |
| `data`     | (Body) The data object containing the car brand details.                                |
| **`name`** | (String) The name of the car brand. **Required**. Must be between 1 and 255 characters. |

**Example Request Body**

```json
{
  "name": "Toyota"
}
```

**Example Response Body**

```json
{
  "id": 1,
  "name": "Toyota"
}
```
