Be Forward Scraper
Pricing
from $2.00 / 1,000 results
Be Forward Scraper
Scrape Japanese export car stock from beforward.jp. Use filters (make, type, fuel, year, price) or paste a stocklist URL — the URL wins when set. Returns FOB price, specs, location, and photos.
Pricing
from $2.00 / 1,000 results
Rating
0.0
(0)
Developer
Marco Rodrigues
Maintained by CommunityActor stats
0
Bookmarked
3
Total users
2
Monthly active users
4 days ago
Last modified
Categories
Share
🚗 Be Forward Scraper
Want Japanese export cars from Be Forward without clicking through stock pages? This scraper makes it easy.
Use structured filters (make, type, fuel, year, FOB price) — structured filters work better for AI agents — or paste an input_url from your browser once you've already filtered on Be Forward. When input_url is set it overrides the filters below. Either way, you get clean CSV/JSON with FOB prices, specs, locations, and photos.
💡 Perfect for...
- Importers & Dealers: Track Toyota, Nissan, Honda and more from Japan stock.
- Marketplaces: Monitor competitor FOB pricing and weekly arrivals.
- Market Research: Analyze USD FOB prices, mileage, and year mix by make.
- Data Analysts: Export structured Be Forward stock for dashboards and valuation models.
- 🤖 AI Agents: Power bots and OpenClaw workflows with live Be Forward search results.
- 📚 RAG Systems: Feed titles, specs, and prices into retrieval pipelines.
- 🔗 AI Workflows: Plug into LangChain, AutoGPT, CrewAI, and similar stacks.
✨ Why you'll love this scraper
- 🔗 Input URL or Filters: Paste a Be Forward
/stocklistURL (input_url) if you already filtered in the browser, or use structured filters (better for AI agents).input_urlalways wins when set. - 🎯 Website-Matched Filters: Make, vehicle type, fuel, steering, and transmission use the same option values as beforward.jp.
- 🇯🇵 Built for Japan export stock: Covers the public Be Forward inventory with FOB USD prices.
📦 What's inside the data?
For every vehicle, you will get:
- Core Details:
id,url,ref_no,title,make,model - Specs:
year,mileage_km,engine_cc,transmission - Pricing:
price,price_label,price_currency(USD FOB) - Location / Media:
location,country,image_url
🚀 Quick start
Option A — Input URL
- Open Be Forward stock list, apply filters, copy the URL.
- Paste it into
input_url. - Set
max_resultsand click Start.
Option B — Structured filters (better for AI agents)
- Leave
input_urlempty. - Pick make / type / fuel and optional year or FOB price.
- Set
max_results(up to 2000) and click Start.
Tech details for developers 🧑💻
Input Example (filters):
{"make": "1","veh_type": "6","fuel": "4","year_min": 2018,"price_max": 15000,"max_results": 100}
Input Example (URL override):
{"input_url": "https://www.beforward.jp/stocklist?make=1","max_results": 50}
Output Example:
{"id": "15951448","url": "https://www.beforward.jp/toyota/prius-phv/ce070478/id/15951448/","ref_no": "CE070478","title": "2023 TOYOTA PRIUS PHV ZPHEV","make": "Toyota","model": "Prius Phv","year": 2023,"mileage_km": 24931,"engine_cc": 1986,"transmission": "AT","price": 20400,"price_label": "$20,400","price_currency": "USD","location": "Nagoya","image_url": "https://image-cdn.beforward.jp/medium/202607/15951448/CE070478.jpg"}
📋 Input reference (detailed)
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
input_url | string | No | — | Paste a Be Forward /stocklist URL; overrides filters when set. |
make | string enum | No | all | Be Forward make id (e.g. 1 = Toyota). Same values as the site dropdown. |
veh_type | string enum | No | any | Type id (e.g. 6 SUV, 4 Sedan). |
fuel | string enum | No | any | Fuel id (e.g. 4 Petrol, 5 Diesel, 1003 Electric). |
steering | string enum | No | any | Right, Left, or Center. |
mission | string enum | No | any | Transmission id (e.g. 7 Automatic, 13 Manual). |
year_min / year_max | integer | No | — | Manufacture year range. |
price_min / price_max | integer | No | — | FOB price in USD. |
keyword | string | No | — | Keyword or ref no. |
max_results | integer | No | 50 | Maximum listings (1–2000). |
Notes on filters
- Prefer exact enum strings from the Apify input dropdowns (same values as beforward.jp).
input_urlalways wins over filters when provided.