# Japan Hard Off OffMall Prices — Listings & Market Data (`fruitful_quintessence/japan-offmall-market-scraper`) Actor

Scrapes Hard Off OffMall data from Japanese second-hand chain official store sources. Extracts title, price (JPY), condition, seller, images, and category per item. JSON / CSV output via Apify dataset, pay-per-event per item scraped. Ideal for resale arbitrage, market research, and price monitoring.

- **URL**: https://apify.com/fruitful\_quintessence/japan-offmall-market-scraper.md
- **Developed by:** [atushi ino](https://apify.com/fruitful_quintessence) (community)
- **Categories:** E-commerce, Automation, Developer tools
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $5.00 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Japan OffMall Used Goods Market — Hard Off Official Scraper

**Scrape used goods prices from OffMall (オフモール), the official online store of Hard Off (ハードオフ) — Japan's largest reuse chain with 800+ participating stores nationwide.**

One dataset covering Japan's biggest second-hand ecosystem: cameras, watches, musical instruments, luxury brands, smartphones, game consoles, audio gear, and more.

### Why this is useful

- **800+ stores in one place** — OffMall aggregates listings from Hard Off stores across Japan (毎日更新)
- **One-item-only used goods** — every listing is a unique physical item with a condition rank (S/A/B/C)
- **Total market scan** — search by keyword or scan entire categories (13 categories)
- **Cross-shop arbitrage** — compare OffMall prices against Kitamura/Fujiya/Jackroad via the Japan Market family of actors

### Input

| Field | Type | Default | Description |
|---|---|---|---|
| `searchKeyword` | string | `iPhone` | Keyword to search (e.g. iPhone, ロレックス, ニンテンドー) |
| `category` | select | \`\` | Category to scan when keyword is empty (カメラ/時計/楽器/ブランド品 等13種) |
| `maxItems` | integer | 100 | Max items to collect |
| `maxPages` | integer | 2 | Max pages per source (30 items/page) |

### Output fields

| Field | Description |
|---|---|
| `productId` | Product ID |
| `title` | Product title |
| `brand` | Brand (e.g. APPLE, Canon, Rolex) |
| `modelCode` | Model code (e.g. MWLX2J/A) |
| `price` | Price in JPY |
| `rank` | Condition rank (S/A/B/C) |
| `imageUrl` | Product image URL |
| `productUrl` | Product page URL |
| `shop` | `OffMall` |
| `source` | `offmall` |
| `category` | Category label |
| `scrapedAt` | Scrape timestamp |

### Output sample

```json
{
  "productId": "6426181",
  "title": "iPhone 11",
  "brand": "APPLE",
  "modelCode": "MWLX2J/A",
  "price": 27500,
  "rank": "B",
  "imageUrl": "https://p1-d9ebd2ee.imageflux.jp/c!/w=231,h=182,a=0,u=0,q=75/201328/2026_08_10_18_26_49.jpg",
  "productUrl": "https://netmall.hardoff.co.jp/product/6426181/",
  "shop": "OffMall",
  "source": "offmall",
  "category": "検索:iPhone",
  "scrapedAt": "2026-08-10T10:10:00Z"
}
```

### Pricing

Pay per event — $0.00005/run + $0.002/item.

### Data source notes

- **OffMall (netmall.hardoff.co.jp)**: official Hard Off online store, 800+ participating stores
- Server-side rendered search pages, robots.txt allows crawling (only /api/, /users/, /statics/ etc. disallowed)
- Only factual product information (name, price, brand, condition rank) is collected

# Actor input Schema

## `statsMode` (type: `boolean`):

Enable price statistics mode instead of normal item collection

## `statsKeyword` (type: `string`):

Optional title keyword to filter when statsMode is enabled

## `searchKeyword` (type: `string`):

Keyword to search OffMall (e.g. iPhone, ロレックス, ニンテンドー). Empty + category = category scan.

## `category` (type: `string`):

Category to scan (used when searchKeyword is empty): オーディオ・デジタル家電, テレビ・モニター, カメラ, パソコン・タブレット, スマートフォン・携帯電話, ゲーム機, 時計, 楽器, ブランド品, ホビー・おもちゃ, スポーツ・アウトドア, キッチン・家電, 家具・インテリア

## `maxItems` (type: `integer`):

Maximum number of items to collect

## `maxPages` (type: `integer`):

Maximum pages to scrape per source (30 items/page)

## `proxyConfiguration` (type: `object`):

Apify proxy configuration

## Actor input object example

```json
{
  "statsMode": false,
  "searchKeyword": "iPhone",
  "maxItems": 100,
  "maxPages": 2,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# Actor output Schema

## `title` (type: `string`):

Title

## `price` (type: `string`):

Price

## `detailUrl` (type: `string`):

Detailurl

## `shop` (type: `string`):

Shop

## `statsType` (type: `string`):

Statstype

## `keyword` (type: `string`):

Keyword

## `count` (type: `string`):

Count

## `priceMin` (type: `string`):

Pricemin

## `priceMax` (type: `string`):

Pricemax

## `priceAvg` (type: `string`):

Priceavg

## `priceMedian` (type: `string`):

Pricemedian

## `sampleItems` (type: `string`):

Sampleitems

## `collectedAt` (type: `string`):

Collectedat

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "statsMode": false,
    "statsKeyword": "",
    "searchKeyword": "iPhone",
    "category": "",
    "maxItems": 100,
    "maxPages": 2,
    "proxyConfiguration": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("fruitful_quintessence/japan-offmall-market-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "statsMode": False,
    "statsKeyword": "",
    "searchKeyword": "iPhone",
    "category": "",
    "maxItems": 100,
    "maxPages": 2,
    "proxyConfiguration": { "useApifyProxy": True },
}

# Run the Actor and wait for it to finish
run = client.actor("fruitful_quintessence/japan-offmall-market-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "statsMode": false,
  "statsKeyword": "",
  "searchKeyword": "iPhone",
  "category": "",
  "maxItems": 100,
  "maxPages": 2,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}' |
apify call fruitful_quintessence/japan-offmall-market-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,fruitful_quintessence/japan-offmall-market-scraper"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/Zh4kqcS4dYPWpFzBd/builds/2r9EPiBQQaZmpntCw/openapi.json
