# OLX India Used Car Price Scraper

**Use case:** 

Scrape OLX India used car listings with prices, locations, photos, and seller details for market research.

## Input

```json
{
  "searchQueries": [
    "car"
  ],
  "startUrls": [
    {
      "url": "https://www.olx.in/items/q-bike"
    }
  ],
  "maxResults": 50,
  "includeDetails": true,
  "maxRequestRetries": 3
}
```

## Output

```json
{
  "listingId": {
    "label": "Listing ID",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "priceText": {
    "label": "Price text",
    "format": "text"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "postedDateText": {
    "label": "Posted",
    "format": "text"
  },
  "detailsText": {
    "label": "Details",
    "format": "text"
  },
  "sellerName": {
    "label": "Seller",
    "format": "text"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "url": {
    "label": "Listing URL",
    "format": "link"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "imageUrls": {
    "label": "Images",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [OLX India Classifieds Scraper](https://apify.com/automation-lab/olx-india-classifieds-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/olx-india-classifieds-scraper) to learn more, explore other use cases, and run it yourself.