# Japan Used Golf Club Prices Scraper (golfpartner.jp) (`fruitful_quintessence/golfpartner-used-club-scraper`) Actor

Search & scrape used golf clubs from golfpartner.jp (Japan, 550K+ in stock). Returns maker, model, category, shaft, condition, price in JPY, image. Search by maker, model or club type. For Japan used golf club price research, reseller sourcing, secondhand market monitoring.

- **URL**: https://apify.com/fruitful\_quintessence/golfpartner-used-club-scraper.md
- **Developed by:** [atushi ino](https://apify.com/fruitful_quintessence) (community)
- **Categories:** E-commerce
- **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/platform/actors/running/actors-in-store#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

## Golfpartner Japan Used Golf Clubs Scraper

Scrape used golf clubs from **golfpartner.jp** (ゴルフパートナー), Japan's largest used golf club marketplace with 550,000+ clubs in stock. Extract maker, model, category, shaft, price and image — perfect for reseller arbitrage, market research, and cross-border golf club sourcing.

> 🇯🇵 **Japanese used golf club market data** — drivers, fairway woods, utilities, irons, wedges, putters from nationwide stores.

### Output Sample

```json
{
  "itemId": "2100397653716",
  "title": "３００ ＭＩＮＩ ＤＲＩＶＥＲ １１．５°",
  "maker": "テーラーメイド",
  "category": "ドライバー",
  "shaft": "ＴＥＮＳＥＩ ＳＩＬＶＥＲ ＴＭ５０（ＭＤ） Ｓ",
  "price": 34347,
  "imageUrl": "/img/goods/M/item2100397653716p1.jpg",
  "detailUrl": "https://www.golfpartner.jp/shop/g/g2100397653716/",
  "source": "golfpartner"
}
```

### Input

| Field | Type | Description |
|-------|------|-------------|
| `category` | string | Category code: `h010001`=driver, `h010002`=fairway wood, `h010003`=utility, `h010004`=iron set, `h010005`=single iron, `h010006`=wedge, `h010007`=putter, `h010008`=club set. Empty = all categories |
| `maxItems` | integer | Max clubs to fetch (default 100) |
| `maxPages` | integer | Max pages to crawl, 20 clubs/page (default 5) |
| `statsMode` | boolean | Return price statistics instead of raw listings |
| `statsKeyword` | string | Model name to aggregate price stats for |
| `proxyConfiguration` | object | Apify proxy (auto by default) |

### Use Cases

- **Golf club exporters** — source JDM used clubs (JDM = Japanese Domestic Market) for overseas resale; Japanese used golf clubs are highly valued globally
- **Reseller arbitrage** — compare JDM club prices across stores
- **Market research** — track model-specific price trends (use `statsMode`)
- **Price monitoring** — watch for deals on specific models (e.g. `ゼクシオ`)

### Pricing

Pay-per-event: small fee per result. Use `statsMode` to get aggregated price stats (min/max/avg/median) for a category in a single call.

### Limitations

- Requires Apify proxy (auto) — golfpartner may block overseas datacenter IPs
- Default fetch is 100 clubs / 5 pages; raise `maxItems`/`maxPages` for more
- Japanese-language output (title/maker/category are in Japanese)

### FAQ

**Q: How do I scrape drivers?** Pass `category: "h010001"` (driver).

**Q: How do I get price statistics?** Set `statsMode: true` to get count/min/max/avg/median for the selected category.

### Changelog

- **0.1** — Initial release: category search, full club fields, stats mode.

# Actor input Schema

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

h010001=ドライバー, h010002=フェアウェイウッド, h010003=ユーティリティ, h010004=アイアンセット, h010005=単品アイアン, h010006=ウェッジ, h010007=パター, h010008=クラブセット。空欄=全カテゴリ

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

trueでカテゴリ別の価格相場統計のみを返す（検索+集計APIモード）

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

モデル名（例: ゼクシオ）。このキーワードを含む商品のみを集計

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

取得する最大商品数

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

巡回する最大ページ数（1ページ=20件）

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

Apifyプロキシ設定（自動）

## Actor input object example

```json
{
  "category": "h010001",
  "statsMode": false,
  "maxItems": 100,
  "maxPages": 5,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# Actor output Schema

## `itemId` (type: `string`):

Stock ID at golfpartner

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

Club model name

## `maker` (type: `string`):

Club maker (TaylorMade, Callaway, etc.)

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

Club category (driver, iron, putter, etc.)

## `shaft` (type: `string`):

Shaft specification

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

Price in yen

## `imageUrl` (type: `string`):

Club image URL

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

Listing page URL

## `source` (type: `string`):

golfpartner

## `scrapedAt` (type: `string`):

Scrape timestamp

# 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 = {
    "category": "h010001",
    "statsKeyword": ""
};

// Run the Actor and wait for it to finish
const run = await client.actor("fruitful_quintessence/golfpartner-used-club-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 = {
    "category": "h010001",
    "statsKeyword": "",
}

# Run the Actor and wait for it to finish
run = client.actor("fruitful_quintessence/golfpartner-used-club-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 '{
  "category": "h010001",
  "statsKeyword": ""
}' |
apify call fruitful_quintessence/golfpartner-used-club-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,fruitful_quintessence/golfpartner-used-club-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/xPSQSSsdVjRwWQAiA/builds/85fS0dt02WajnB3AZ/openapi.json
