> 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-step-3-owner-registration-details.md).

# Get Step 3 Owner Registration Details

Retrieve details of a step 3 owner registration, including car brand and car model information.

***

#### Parameters

This endpoint does not require any parameters.

***

#### Responses

| **Code** | **Description**                                           |
| -------- | --------------------------------------------------------- |
| `200`    | Successfully retrieved step 3 owner registration details. |

**Example Response**

```json
{
  "id": "12345",
  "car_brand": {
    "id": 1,
    "name": "Toyota"
  },
  "car_brand_id": 1,
  "car_model": "Camry"
}
```

***

#### Response Fields

| **Field**      | **Type**          | **Description**                              |
| -------------- | ----------------- | -------------------------------------------- |
| `id`           | String            | Unique identifier for the step 3 owner.      |
| `car_brand`    | Object            | Details of the car brand.                    |
| **`id`**       | Integer           | Unique identifier for the car brand.         |
| **`name`**     | String            | Name of the car brand.                       |
| `car_brand_id` | Integer           | Identifier linking the owner to a car brand. |
| `car_model`    | String (nullable) | Model of the car.                            |
