# メルカリ アニメフィギュア検索

**Use case:** 

メルカリ アニメフィギュア出品一覧を取得し、価格・状態・出品者情報をまとめて確認できます。 Anime figure resellers and collectors use this example to track fresh anime figure listings on Mercari Japan, sorted by newest, with published condition and seller details attached. It surfaces JPY price, condition code, category, and photo URLs so buyers can compare options before a figure sells out.

## Input

```json
{
  "keywords": [
    "アニメ フィギュア"
  ],
  "sort": "created_time",
  "order": "desc",
  "status": [
    "on_sale"
  ],
  "shippingPayer": "any",
  "fetchItemDetails": false,
  "maxItemsPerQuery": 25,
  "maxResults": 25,
  "monitorMode": false,
  "emitUnchanged": false,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "thumbnail_url": {
    "label": "Image",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "price": {
    "label": "Price JPY",
    "format": "number"
  },
  "listing_status": {
    "label": "Listing status",
    "format": "string"
  },
  "condition_name": {
    "label": "Condition name",
    "format": "string"
  },
  "brand_name": {
    "label": "Brand name",
    "format": "string"
  },
  "seller_name": {
    "label": "Seller name",
    "format": "string"
  },
  "source_query": {
    "label": "Source query",
    "format": "string"
  },
  "url": {
    "label": "Listing",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Mercari Japan Scraper: Listings and Prices](https://apify.com/getascraper/mercari-japan-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/getascraper/mercari-japan-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/getascraper/mercari-japan-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`).
