# Mercari US item details and seller extractor

**Use case:** 

Extract one public Mercari US item into structured listing data with description, images, likes, condition, price, and seller metrics.

## Input

```json
{
  "keywords": [
    "nintendo switch"
  ],
  "startUrls": [
    {
      "url": "https://www.mercari.com/us/item/m36640238524/"
    }
  ],
  "maxItems": 1,
  "status": "active",
  "sort": "best_match",
  "includeDetails": false,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "itemId": {
    "label": "Item ID",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "string"
  },
  "condition": {
    "label": "Condition",
    "format": "string"
  },
  "brand": {
    "label": "Brand",
    "format": "string"
  },
  "category": {
    "label": "Category",
    "format": "string"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "isSold": {
    "label": "Sold",
    "format": "boolean"
  },
  "sellerName": {
    "label": "Seller",
    "format": "string"
  },
  "itemUrl": {
    "label": "Mercari URL",
    "format": "string"
  },
  "imageUrl": {
    "label": "Image",
    "format": "string"
  }
}
```

## About this Actor

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