# Carousell Search URL Extractor

**Use case:** 

Extract structured listing data from a specific Carousell search URL, including title, price, seller, condition, and image.

## Input

```json
{
  "keywords": [
    "bicycle"
  ],
  "startUrls": [
    {
      "url": "https://www.carousell.sg/search/camera/"
    }
  ],
  "maxItems": 40,
  "market": "sg",
  "sortBy": "best_match",
  "proxyType": "residential",
  "timeoutSecs": 75
}
```

## Output

```json
{
  "listingId": {
    "label": "Listing ID"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "price": {
    "label": "Price"
  },
  "priceValue": {
    "label": "Price value",
    "format": "number"
  },
  "currency": {
    "label": "Currency"
  },
  "condition": {
    "label": "Condition"
  },
  "sellerName": {
    "label": "Seller"
  },
  "sellerProfileUrl": {
    "label": "Seller profile",
    "format": "link"
  },
  "listingUrl": {
    "label": "Listing URL",
    "format": "link"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "link"
  },
  "searchQuery": {
    "label": "Search query"
  },
  "postedAt": {
    "label": "Posted at"
  },
  "location": {
    "label": "Location"
  },
  "imageUrl": {
    "label": "Image",
    "format": "image"
  },
  "isBuyerProtection": {
    "label": "Buyer protection",
    "format": "boolean"
  },
  "likesCount": {
    "label": "Likes",
    "format": "number"
  },
  "description": {
    "label": "Description"
  },
  "categoryBreadcrumbs": {
    "label": "Category breadcrumbs"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

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