# IAAI Vehicle Auction Data Extractor

**Use case:** 

Gather detailed vehicle auction listings from IAAI with this task. Input a vehicle keyword or IAAI search URL, and receive structured data including condition, damage, location, and pricing for up to 50 results across 5 pages. Streamline your research and inventory management with comprehensive auction data.

## Input

```json
{
  "keyword": "honda civic",
  "location": "10001",
  "resultsWanted": 50,
  "maxPages": 5,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "inventoryId": {
    "label": "Inventory ID",
    "format": "text"
  },
  "vehicleTitle": {
    "label": "Vehicle",
    "format": "text"
  },
  "year": {
    "label": "Year",
    "format": "text"
  },
  "make": {
    "label": "Make",
    "format": "text"
  },
  "model": {
    "label": "Model",
    "format": "text"
  },
  "branchName": {
    "label": "Branch",
    "format": "text"
  },
  "saleDate": {
    "label": "Sale Date",
    "format": "text"
  },
  "odometer": {
    "label": "Odometer",
    "format": "text"
  },
  "primaryDamage": {
    "label": "Primary Damage",
    "format": "text"
  },
  "lotUrl": {
    "label": "Lot URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [IAAI Vehicles Scraper 🚗](https://apify.com/shahidirfan/iaai-vehicles-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/shahidirfan/iaai-vehicles-scraper.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/shahidirfan/iaai-vehicles-scraper.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`).
