# Vehicle Data Normalizer — Australian Inventory — Quick Results

**Use case:** 

Run Vehicle Data Normalizer — Australian Inventory for quick structured data extraction. Export structured results for research, reporting, integrations, and

## Input

```json
{
  "sourceUrls": [
    "https://dealer.example/inventory.csv"
  ],
  "inlineData": "[{\"listingId\":\"DEMO-001\",\"title\":\"2021 Toyota Corolla Ascent Sport\",\"year\":2021,\"make\":\"Toyota\",\"model\":\"Corolla\",\"variant\":\"Ascent Sport\",\"price\":26689,\"currency\":\"AUD\",\"odometerKm\":62817,\"state\":\"NSW\",\"sellerType\":\"dealer\"}]",
  "sourceFormat": "auto",
  "sourceLabel": "user-provided inventory",
  "defaultCurrency": "AUD",
  "maxResults": 1,
  "duplicateStrategy": "prefer-complete",
  "previousDatasetId": "a1b2c3d4e5f6",
  "responseFormat": "concise",
  "includeInvalidRecords": true
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "string"
  },
  "year": {
    "label": "Year",
    "format": "integer"
  },
  "make": {
    "label": "Make",
    "format": "string"
  },
  "model": {
    "label": "Model",
    "format": "string"
  },
  "variant": {
    "label": "Variant",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "string"
  },
  "odometerKm": {
    "label": "Odometer (km)",
    "format": "number"
  },
  "condition": {
    "label": "Condition",
    "format": "string"
  },
  "sellerType": {
    "label": "Seller Type",
    "format": "string"
  },
  "sellerName": {
    "label": "Seller Name",
    "format": "string"
  },
  "suburb": {
    "label": "Suburb",
    "format": "string"
  },
  "state": {
    "label": "State",
    "format": "string"
  },
  "listingUrl": {
    "label": "Listing URL",
    "format": "string"
  },
  "priceChange": {
    "label": "Price Change",
    "format": "string"
  },
  "observedAt": {
    "label": "Observed At",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Vehicle Data Normalizer — Australian Inventory](https://apify.com/muhammadafzal/normalize-australian-vehicle-data.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/muhammadafzal/normalize-australian-vehicle-data.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/muhammadafzal/normalize-australian-vehicle-data.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
