# Tackleberry B-net Japan Fishing Tackle Scraper (`fruitful_quintessence/tackleberry-japan-fishing-tackle-scraper`) Actor

Scrape Tackleberry B-net (b-net.tackleberry.co.jp), Japan largest new & used fishing tackle shop. Search by keyword (Shimano, Daiwa) or category, get prices, discounts, stock status, used/new flags. Perfect for JDM fishing gear price monitoring, resale arbitrage, and market research.

- **URL**: https://apify.com/fruitful\_quintessence/tackleberry-japan-fishing-tackle-scraper.md
- **Developed by:** [atushi ino](https://apify.com/fruitful_quintessence) (community)
- **Categories:** E-commerce
- **Stats:** 2 total users, 1 monthly users, 0.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

## Tackleberry B-net Japan Fishing Tackle Scraper

Extract product data from **@Berry Net** (タックルベリーB-net), one of Japan's largest new & used fishing tackle marketplaces — capture JDM reels, rods, and lures in real time.

### Output Sample

```json
{
  "productId": "1234888",
  "title": "エメラルダスXボート65LS-S・E",
  "name": "エメラルダスXボート65LS-S・E",
  "price": 15246,
  "regularPrice": 21780,
  "discountRate": 30,
  "imageUrl": "https://b-net.tackleberry.co.jp/html/upload/save_image/no_image_product.png",
  "productUrl": "https://b-net.tackleberry.co.jp/products/detail/1234888",
  "isUsed": true,
  "categoryId": 12,
  "inStock": true
}
```

### Input

| Field | Type | Description |
|-------|------|-------------|
| `keyword` | string | Search keyword, e.g. `シマノ`, `アンタレス`, `ロッド` |
| `categoryId` | integer | Category ID from the category URL |
| `maxItems` | integer | Maximum number of results to return (default: 100) |
| `proxyConfiguration` | object | Apify proxy configuration |

*You must provide either `keyword` or `categoryId`.*

### Use Cases

- **Track JDM reel and rod prices across 200+ Tackleberry stores** — monitor price drops and stock changes for reselling.
- **Monitor used tackle inventory for rare discontinued lures** — never miss a hard‑to‑find item when it goes on sale.
- **Build a fishing gear price‑comparison dashboard** — aggregate Japanese tackle prices for your own app or website.
- **Market research on Japan used tackle pricing trends** — analyze historical data to spot pricing patterns.

### Integrations

- **Apify MCP Connectors** – push results to Slack, Notion, Supabase, or GitHub automatically.
- **Scheduling** – use the Schedule tab to run this Actor every day with no manual work.
- **Webhooks** – get a POST request to your endpoint whenever the Actor finishes.

### Pricing

- **$0.01 per 1,000 results** + **$0.00005 per run start**.
- A typical 100‑item run costs **under $0.01**.
- No minimum monthly fee — pay only for what you use.

### Limitations

- The Actor reads **listing pages** only. Some product details (e.g., precise stock status) may not be available for every item.
- The website is **Japanese‑only**, and all titles/names will be in Japanese.
- To respect rate limits, the Actor waits **1–3 seconds** between page requests.

### FAQ

**Can I search used items only?**

Yes — use category search with `sale_type[]=3`. Provide a `categoryId` and the Actor will only return used products.

**How fresh is the data?**

Real‑time. The Actor fetches data at execution time directly from the website.

**Can I schedule runs?**

Yes — open the Schedule tab in Apify and set a daily (or any custom) interval.

**Is the site TOS‑compliant?**

The site's `robots.txt` allows general crawlers, and this Actor respects those rules.

### Changelog

#### 0.1.0 (2026-08-08)

- Initial release.
- Keyword search.
- Category search with used‑item support (`sale_type[]=3`).
- Pagination (60 items per page).
- Stock detection.

### Integrations

Works with Apify [Connectors](https://apify.com/integrations) — push results to Slack, Google Sheets, Notion, or Supabase with one click. Trigger on a [Schedule](https://apify.com/docs/schedules) for daily price tracking.

# Actor input Schema

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

Search term, e.g. シマノ

## `categoryId` (type: `integer`):

Category ID from the category search URL

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

Maximum number of products to scrape

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

Apify proxy configuration

## Actor input object example

```json
{
  "maxItems": 100
}
```

# Actor output Schema

## `productId` (type: `string`):

Product ID from URL

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

Product title

## `name` (type: `string`):

Alt text of product image

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

Tax-included price

## `regularPrice` (type: `string`):

Original price

## `discountRate` (type: `string`):

Discount percentage

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

Absolute image URL

## `productUrl` (type: `string`):

Absolute product page URL

## `isUsed` (type: `string`):

Whether the item is used

## `categoryId` (type: `string`):

Category ID used in query

## `inStock` (type: `string`):

Whether the item is in stock

# 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 = {};

// Run the Actor and wait for it to finish
const run = await client.actor("fruitful_quintessence/tackleberry-japan-fishing-tackle-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 = {}

# Run the Actor and wait for it to finish
run = client.actor("fruitful_quintessence/tackleberry-japan-fishing-tackle-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 '{}' |
apify call fruitful_quintessence/tackleberry-japan-fishing-tackle-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,fruitful_quintessence/tackleberry-japan-fishing-tackle-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/wxMskoiHMPeeH2qAJ/builds/mkg2lKZQdRDkH2eWI/openapi.json
