> For the complete documentation index, see [llms.txt](https://docs.tutelar.io/tutelar-api-document/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tutelar.io/tutelar-api-document/kyc-verification/document-verification/uae/uae-dubai-vehicle-details.md).

# UAE Dubai Vehicle Details

The Dubai Vehicle Details API allows users to retrieve information about vehicles registered in Dubai, including registration details, ownership information, and vehicle specifications.

#### Submit Document

## dubai\_vehicle\_deatils

<mark style="color:green;">`POST`</mark> `https://secctrl.tutelar.io/api/v1/kyc/utility/dubai_vehicle_details`

### Post parameters description is given below,

<table><thead><tr><th width="197">Post Parameter </th><th width="139">Type</th><th>Is  Mandatory</th><th width="235.63671875">Description</th></tr></thead><tbody><tr><td>plate_number </td><td>String </td><td>Yes </td><td>The unique series of digits of the vehicle's license plate.</td></tr><tr><td>plate_code</td><td>String</td><td>Yes</td><td>The alphabetical code that specifies the category or series of the plate.</td></tr><tr><td>vehicle_category</td><td>String</td><td>Yes</td><td><p>The Vehicle Category will be any one of the below:</p><p>dubai_police<br>learning_vehicle<br>import<br>motorcycle<br>private<br>taxi<br>public_transportation<br>trade_plate<br>export<br>consulate_authority<br>political_authority<br>international_organization<br>protocol<br>government_vehicle<br>private_transportation<br>data_migration<br>classical<br>entertainment_motorcycle<br>trailer<br>dubai_flag<br>Under_test</p><p></p><p>Vehicle Catogery cannot be other than these.</p></td></tr><tr><td>traffic_file_number</td><td>String</td><td>Yes</td><td>Traffice File Number of the vehicle</td></tr><tr><td>registration_date</td><td>String</td><td>Yes</td><td>Registration date of the vehicle <br>Format: YYYY-MM-DD</td></tr></tbody></table>

#### Sample Post Parameters

```json
{
    "plate_number": "54646",
    "plate_code": "G",
    "vehicle_category": "private",
    "traffic_file_number": "10583602",
    "registration_date": "2017-05-10"
}
```

{% tabs %}
{% tab title="200: Success Response" %}

```json
{
    "success": true,
    "code": 200,
    "message": "The request has been successfully completed.",
    "reference_id": "aa0b7408-6d9a-423f-be28-95be9c5b6a83",
    "status": "completed",
    "result": {
        "plateNumber": "54646",
        "plateCode": "G",
        "trafficFileNumber": "10583602",
        "vehicleCategory": "private",
        "registrationDate": "2017-05-10",
        "placeOfIssue": "Dubai",
        "ownerName": "JAWAD ABDELREDA ABDELBAQI AL",
        "policyNumber": "DB-C-35924",
        "nationality": "Jordan",
        "insuranceCompany": "JORDAN INSURANCE CO. LTD.",
        "countryOfManufacture": "JORDAN INSURANCE CO. LTD.",
        "vehicleColor": "White",
        "vehicleClass": "STATION",
        "vehicleType": "AUDI Q7",
        "emptyWeight": "1950",
        "totalWeight": "2550",
        "engineNo": "CRE 136707",
        "chassisNumber": "WA1AGDF76HD046121",
        "dateOfExpiry": "2025-04-21"
    },
    "requested_at": "2026-01-27T10:07:19.621Z",
    "completed_at": "2026-01-27T10:07:20.169Z"
}
```

{% endtab %}

{% tab title="200: InProgress Response" %}

```json
{
    "success": true,
    "code": 200,
    "message": "The request is being processed. Please wait for completion.",
    "reference_id": "d63508d8-9e04-49ec-925c-e1912d6a0007",
    "status": "in_progress",
    "requested_at": "2026-01-27T11:44:58.057Z"
}
```

{% endtab %}

{% tab title="400: Validation Error Response" %}

```json
{
    "success": false,
    "code": 400,
    "message": "Invalid input. Please check your request and try again.",
    "error": {
        "message": "Plate Number should not be empty",
        "field": "plate_number",
        "code": "BAD_REQUEST"
    }
},
{
    "success": false,
    "code": 400,
    "message": "Invalid input. Please check your request and try again.",
    "error": {
        "message": "Plate Code should not be empty",
        "field": "plate_code",
        "code": "BAD_REQUEST"
    }
},
{
    "success": false,
    "code": 400,
    "message": "Invalid input. Please check your request and try again.",
    "error": {
        "message": "Vechicle Category should not be empty",
        "field": "vehicle_category",
        "code": "BAD_REQUEST"
    }
},
{
    "success": false,
    "code": 400,
    "message": "Invalid input. Please check your request and try again.",
    "error": {
        "message": "Traffic File Number should not be empty",
        "field": "traffic_file_number",
        "code": "BAD_REQUEST"
    }
},
{
    "success": false,
    "code": 400,
    "message": "Invalid input. Please check your request and try again.",
    "error": {
        "message": "Registration Date should not be empty",
        "field": "registration_date",
        "code": "BAD_REQUEST"
    }
},
{
    "success": false,
    "code": 400,
    "message": "Invalid input. Please check your request and try again.",
    "error": {
        "message": "Invalid Registration Date format. Use YYYY-MM-DD.",
        "field": "registration_date",
        "code": "BAD_REQUEST"
    }
}
```

{% endtab %}

{% tab title="200: Failure Response" %}

```json
{
    "success": true,
    "code": 200,
    "message": "The request could not be completed due to an error.",
    "reference_id": "9b0b9637-6f44-45f4-9bd9-b8b4967b65aa",
    "status": "failed",
    "error": {
        "message": "Data not found for given input",
        "code": "ERROR"
    },
    "requested_at": "2026-01-27T12:10:03.767Z",
    "completed_at": "2026-01-27T12:10:45.752Z"
}
```

{% endtab %}
{% endtabs %}

#### Check Document Status

## Get document details

<mark style="color:blue;">`GET`</mark> `https://secctrl.tutelar.io/api/v1/kyc/utility/dubai_vehicle_details`

### Query parameters description is given below,

<table><thead><tr><th width="197">Query Parameter </th><th width="139">Type</th><th>Is  Mandatory</th><th>Description</th></tr></thead><tbody><tr><td>reference_id </td><td>String </td><td>Yes </td><td>Document reference id</td></tr></tbody></table>

{% tabs %}
{% tab title="200: Success Response" %}

```json
{
    "success": true,
    "code": 200,
    "message": "The request has been successfully completed.",
    "reference_id": "aa0b7408-6d9a-423f-be28-95be9c5b6a83",
    "status": "completed",
    "result": {
        "plateNumber": "54646",
        "plateCode": "G",
        "trafficFileNumber": "10583602",
        "vehicleCategory": "private",
        "registrationDate": "2017-05-10",
        "placeOfIssue": "Dubai",
        "ownerName": "JAWAD ABDELREDA ABDELBAQI AL",
        "policyNumber": "DB-C-35924",
        "nationality": "Jordan",
        "insuranceCompany": "JORDAN INSURANCE CO. LTD.",
        "countryOfManufacture": "JORDAN INSURANCE CO. LTD.",
        "vehicleColor": "White",
        "vehicleClass": "STATION",
        "vehicleType": "AUDI Q7",
        "emptyWeight": "1950",
        "totalWeight": "2550",
        "engineNo": "CRE 136707",
        "chassisNumber": "WA1AGDF76HD046121",
        "dateOfExpiry": "2025-04-21"
    },
    "requested_at": "2026-01-27T10:07:19.621Z",
    "completed_at": "2026-01-27T10:07:20.169Z"
}
```

{% endtab %}

{% tab title="200: InProgress Response" %}

```json
{
    "success": true,
    "code": 200,
    "message": "The request is being processed. Please wait for completion.",
    "reference_id": "d63508d8-9e04-49ec-925c-e1912d6a0007",
    "status": "in_progress",
    "requested_at": "2026-01-27T11:44:58.057Z"
}
```

{% endtab %}

{% tab title="200: Failure Response" %}

```json
{
    "success": true,
    "code": 200,
    "message": "The request could not be completed due to an error.",
    "reference_id": "9b0b9637-6f44-45f4-9bd9-b8b4967b65aa",
    "status": "failed",
    "error": {
        "message": "Data not found for given input",
        "code": "ERROR"
    },
    "requested_at": "2026-01-27T12:10:03.767Z",
    "completed_at": "2026-01-27T12:10:45.752Z"
}
```

{% endtab %}
{% endtabs %}
