> 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-user-car-list.md).

# Get User Car List

GET /user/user-car/

The `GET /user/user-car/`endpoint retrieves the list of cars associated with a user.

**Parameters:**\
No parameters are required for this request.

***

**Responses:**

| **Code** | **Description**                                              |
| -------- | ------------------------------------------------------------ |
| 200      | Success - Returns the list of cars associated with the user. |

***

**Example Response:**

```json
[
  {
    "car_id": 1,
    "make": "Toyota",
    "model": "Corolla",
    "year": 2020,
    "license_plate": "ABC1234"
  },
  {
    "car_id": 2,
    "make": "Honda",
    "model": "Civic",
    "year": 2018,
    "license_plate": "XYZ5678"
  }
]
```
