# Registration Status

To retrieve the registration status & write-off information for a given vehicle, you can call the `status` endpoint.

Call the `/v2/vehicles/{number_plate}/status` endpoint with `region=au`. You must send the state in its short format, you can use the long format for front-end purposes if you require. Refer to the Australian state table under the Registration Search heading in this guide for a list.

{% openapi src="/files/TapIOjKDYdyzufcTwuea" path="/v2/vehicles/registrations/{plate\_number}/status" method="get" %}
[insurance\_updated.yaml](https://4010475651-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FFaCA1JqFKRrqIB0EfZlZ%2Fuploads%2FuDtxATuz0g12x4lhufjn%2Finsurance_updated.yaml?alt=media\&token=2565c3ea-325e-4bf3-b8e4-31792a5c9e79)
{% endopenapi %}

### Example Usage

To understand the current registration status of a vehicle request with the plate and state.

```
curl --location 'https://api.autograb.com.au/v2/vehicles/registrations/CCU542/status?state=vic&region=au' \
--header 'ApiKey: YOURKEY'
```

```json
{
    "success": true,
    "plate_number": "CCU542",
    "state": "VIC",
    "vin": "LRWYHCFS6NC428809",
    "registration_status": "REGISTERED",
    "registration_expiry": "2026-09-07",
    "manufacture_year": 2022,
    "compliance_plate": "2022-08",
    "incidents": []
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://devhub.autograb.com/vehicle-search/registration-status.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
