# Japan cameras Prices — Listings & Market Data (`fruitful_quintessence/japan-camera-market-cn-scraper`) Actor

Scrapes cameras data from Japanese DSLR, mirrorless, vintage cameras 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-camera-market-cn-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 $2.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

## 日本二手相机市场 — 跨店比价（Kitamura + Fujiya Camera）

**日本最大的二手相机连锁店（キタムラ、全国300+店铺）与老牌二手相机店（フジヤカメラ）的横向价格对比。** 同一相机型号的店铺间差价一目了然，适合代购、转卖、行情调研。

> 🇯🇵 English/日本語版: [Japan Used Camera Market](https://apify.com/fruitful_quintessence/japan-used-camera-market-scraper)

### 为什么有用

- **跨店比价**: キタムラ（日本最大二手相机连锁）和フジヤカメラ（1956年创立的二手相机老店）同时搜索
- **真实库存**: 每家店显示实际库存状态，快速发现「这家缺货那家有货」
- **日元价格**: 直接输出日元价格，方便计算代购/转卖利润
- **无需代理**: キタムラ直连API，速度快、稳定

### 输入

| 字段 | 类型 | 默认值 | 说明 |
|---|---|---|---|
| `searchKeyword` | string | `α7` | 相机/镜头名称（留空=扫描全部类目） |
| `maxItems` | integer | 100 | 最大获取件数 |
| `maxPages` | integer | 2 | 每个来源的最大页数 |
| `sources` | string | `kitamura,fujiya` | 来源（逗号分隔） |

### 输出字段

| 字段 | 说明 |
|---|---|
| `productId` | 商品ID |
| `title` | 商品名 |
| `price` | 价格（日元） |
| `brand` | 品牌 |
| `shop` | 店铺名 |
| `category` | 分类 |
| `condition` | 成色（新品/未使用/中古等） |
| `stockStatus` | 库存状态 |
| `imageUrl` | 图片URL |
| `productUrl` | 商品链接 |
| `source` | `kitamura` or `fujiya` |
| `scrapedAt` | 抓取时间 |

### 输出示例

```json
{
  "productId": "253468",
  "title": "ソニー α7III",
  "brand": "SONY",
  "price": 130600,
  "shop": "キタムラ ネット中古",
  "condition": "中古品A",
  "stockStatus": "在庫あり",
  "source": "kitamura",
  "productUrl": "https://shop.kitamura.jp/ec/prd/253468",
  "scrapedAt": "2026-08-10T10:00:00Z"
}
```

### 适用场景

- **代购/转卖**: 发现低价二手相机，赚取差价
- **行情调研**: 追踪特定型号的市场价格走势
- **库存监控**: 监控300+店铺的库存变化

### 定价

按事件计费 — $0.00005/次运行 + **$0.002/条数据**。

### 数据来源

キタムラ公开搜索API + フジヤカメラ搜索页面。仅收集公开的商品信息（名称、价格、品牌、库存状态）。

# Actor input Schema

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

相机/镜头名称（留空=扫描全部类目）

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

开启后不输出单个商品，只输出统计结果

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

指定后，仅统计商品标题中包含该字符的商品

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

最大获取商品数

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

每个来源的最大页数

## `sources` (type: `string`):

逗号分隔（kitamura,fujiya）

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

Apify代理（自动）

## Actor input object example

```json
{
  "searchKeyword": "α7",
  "statsMode": false,
  "maxItems": 100,
  "maxPages": 2,
  "sources": "kitamura,fujiya",
  "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 = {
    "searchKeyword": "α7",
    "statsKeyword": "",
    "proxyConfiguration": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("fruitful_quintessence/japan-camera-market-cn-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 = {
    "searchKeyword": "α7",
    "statsKeyword": "",
    "proxyConfiguration": { "useApifyProxy": True },
}

# Run the Actor and wait for it to finish
run = client.actor("fruitful_quintessence/japan-camera-market-cn-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 '{
  "searchKeyword": "α7",
  "statsKeyword": "",
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}' |
apify call fruitful_quintessence/japan-camera-market-cn-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,fruitful_quintessence/japan-camera-market-cn-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/OqO1aPmd1njsKQvaW/builds/eJ9NktN5RXOtodlBI/openapi.json
