# VIN to Registration

## Get vehicle registration details by VIN

> Get vehicle registration details by VIN

```json
{"openapi":"3.1.1","info":{"title":"AutoGrab API","version":"2.0.0"},"servers":[{"url":"https://api.autograb.com.au"}],"security":[{"ApiKeyAuth":[]}],"components":{"securitySchemes":{"ApiKeyAuth":{"type":"apiKey","in":"header","name":"ApiKey"}}},"paths":{"/v2/vehicles/vins/{vin}/registration":{"get":{"summary":"Get vehicle registration details by VIN","description":"Get vehicle registration details by VIN","parameters":[{"name":"vin","type":"string","required":true,"description":"The VIN number to lookup","in":"path"},{"name":"region","type":"string","enum":["au","nz","uk","my"],"description":"The region to perform this request in","in":"query"},{"name":"reference_id","type":"string","required":false,"description":"An optional reference id which will be stored against usage records if supplied","in":"query"}],"responses":{"200":{"description":"Success","schema":{"type":"object","properties":{"success":{"type":"boolean"},"plate":{"type":"string"},"plate_state":{"type":"string"},"vin":{"type":"string"}},"required":["success","plate","plate_state","vin"]}},"400":{"description":"Bad Request","schema":{"$ref":"#/definitions/ErrorSchema"}},"401":{"description":"Unauthorized","schema":{"$ref":"#/definitions/ErrorSchema"}},"404":{"description":"Not Found","schema":{"$ref":"#/definitions/ErrorSchema"}}},"tags":["Vehicles"]}}}}
```
