# VIN/CAR CHASIS

{% hint style="info" %}
TEST DATA\
vin: AAA00000000
{% endhint %}

## VERIFY VIN/CAR IDENTIFICATION NUMBER

<mark style="color:green;">`POST`</mark> `https://api.myidentitypay.com/api/v2/biometrics/merchant/data/verification/vehicle/vin`

#### Headers

| Name                                        | Type   | Description        |
| ------------------------------------------- | ------ | ------------------ |
| x-api-key<mark style="color:red;">\*</mark> | String | \<your secret key> |
| app-id<mark style="color:red;">\*</mark>    | String | \<your app id>     |

#### Request Body

| Name                                  | Type   | Description                   |
| ------------------------------------- | ------ | ----------------------------- |
| vin<mark style="color:red;">\*</mark> | String | vehicle identification number |

{% tabs %}
{% tab title="200: OK VIN Retrieved successfully" %}

```javascript
{
    "status": true,
    "response_code": "00",
    "message": "Vin retrieved successfully",
    "data": {
        "vehicle_name": "",
        "vehicle_age": "",
        "vehicle_made_in": "",
        "vehicle_image": "",
        "market_analysis": {
            "time_period": "",
            "certainty": ""
        },
        "vehicle_specification": [
            {
                "year": ""
            },
            {
                "make": ""
            },
            {
                "model": ""
            },
            {
                "trim": ""
            },
            {
                "size": ""
            },
            {
                "category": ""
            },
            {
                "made_in": ""
            },
            {
                "made_in_city": ""
            },
            {
                "doors": ""
            },
            {
                "fuel_type": ""
            },
            {
                "fuel_capacity": ""
            },
            {
                "city_mileage": ""
            },
            {
                "highway_mileage": ""
            },
            {
                "engine": ""
            },
            {
                "engine_size": ""
            },
            {
                "engine_cylinders": ""
            },
            {
                "transmission": ""
            },
            {
                "transmission_type": ""
            },
            {
                "transmission_speeds": ""
            },
            {
                "drivetrain": ""
            },
            {
                "anti_brake_system": ""
            },
            {
                "steering_type": ""
            },
            {
                "curb_weight": ""
            },
            {
                "gross_vehicle_weight_rating": ""
            },
            {
                "overall_height": ""
            },
            {
                "overall_length": ""
            },
            {
                "overall_width": ""
            },
            {
                "wheelbase_length": ""
            },
            {
                "standard_seating": ""
            }
        ],
        "vehicle_equipments": [
            {
                "section": "Chassis",
                "details": [
                    {
                        "Anti-Brake_System": ""
                    },
                    {
                        "Steering_Type": ""
                    },
                    {
                        "Front_Brake_Type": ""
                    },
                    {
                        "Rear_Brake_Type": ""
                    },
                    {
                        "Front_Suspension": ""
                    },
                    {
                        "Rear_Suspension": ""
                    },
                    {
                        "Front_Spring_Type": ""
                    },
                    {
                        "Rear_Spring_Type": ""
                    },
                    {
                        "Tires": ""
                    }
                ]
            },
            {
                "section": "Interior Dimensions",
                "details": [
                    {
                        "Front_Headroom": ""
                    },
                    {
                        "Rear_Headroom": ""
                    },
                    {
                        "Front_Legroom": ""
                    },
                    {
                        "Rear_Legroom": ""
                    },
                    {
                        "Front_Shoulder_Room": ""
                    },
                    {
                        "Rear_Shoulder_Room": ""
                    }
                ]
            },
            {
                "section": "Exterior Dimensions & Weight",
                "details": [
                    {
                        "Curb_Weight-automatic": ""
                    },
                    {
                        "Overall_Length": ""
                    },
                    {
                        "Overall_Width": ""
                    },
                    {
                        "Overall_Height": ""
                    },
                    {
                        "Wheelbase": ""
                    },
                    {
                        "Ground_Clearance": ""
                    },
                    {
                        "Track_Front": ""
                    },
                    {
                        "Track_Rear": ""
                    }
                ]
            },
            {
                "section": "Cargo Bed Dimensions",
                "details": [
                    {
                        "Overall_Length": ""
                    },
                    {
                        "Cargo_Length": ""
                    },
                    {
                        "Width_At_Wheelwell": ""
                    },
                    {
                        "Width_At_Wall": ""
                    }
                ]
            },
            {
                "section": "Capacities",
                "details": [
                    {
                        "Standard_Seating": ""
                    },
                    {
                        "Standard_Towing": ""
                    },
                    {
                        "Maximum_Towing": ""
                    },
                    {
                        "Standard_Payload": ""
                    },
                    {
                        "Maximum_Payload": ""
                    },
                    {
                        "Standard_GVWR": ""
                    },
                    {
                        "Maximum_GVWR": ""
                    }
                ]
            }
        ],
        "fuel_details": {
            "City_Mileage": "",
            "Highway_Mileage": "",
            "Fuel_Type": "",
            "Fuel_Capacity": ""
        },
        "vehicle_warranty": [
            {
                "type": "",
                "warranty": "",
                "estimated_remainings": ""
            },
            {
                "type": "",
                "warranty": "",
                "estimated_remainings": ""
            },
            {
                "type": "",
                "warranty": "",
                "estimated_remainings": ""
            }
        ]
    }
}
```

{% endtab %}
{% endtabs %}
