# Mercari Japan Search URL Scraper

**Use case:** 

Extract structured listings from a Mercari Japan search URL, including prices, listing links, thumbnails, and status.

## Input

```json
{
  "keywords": [],
  "startUrls": [
    {
      "url": "https://jp.mercari.com/search?keyword=%E3%82%AB%E3%83%A1%E3%83%A9"
    }
  ],
  "maxItems": 75,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "itemUrl": {
    "label": "Item URL",
    "format": "link"
  },
  "imageUrl": {
    "label": "Image",
    "format": "image"
  },
  "itemId": {
    "label": "Item ID",
    "format": "text"
  },
  "keyword": {
    "label": "Keyword",
    "format": "text"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

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