Be Forward Scraper avatar

Be Forward Scraper

Pricing

from $2.00 / 1,000 results

Go to Apify Store
Be Forward Scraper

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

Marco Rodrigues

Maintained by Community

Actor 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 /stocklist URL (input_url) if you already filtered in the browser, or use structured filters (better for AI agents). input_url always 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

  1. Open Be Forward stock list, apply filters, copy the URL.
  2. Paste it into input_url.
  3. Set max_results and click Start.

Option B — Structured filters (better for AI agents)

  1. Leave input_url empty.
  2. Pick make / type / fuel and optional year or FOB price.
  3. 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)

ParameterTypeRequiredDefaultDescription
input_urlstringNoPaste a Be Forward /stocklist URL; overrides filters when set.
makestring enumNoallBe Forward make id (e.g. 1 = Toyota). Same values as the site dropdown.
veh_typestring enumNoanyType id (e.g. 6 SUV, 4 Sedan).
fuelstring enumNoanyFuel id (e.g. 4 Petrol, 5 Diesel, 1003 Electric).
steeringstring enumNoanyRight, Left, or Center.
missionstring enumNoanyTransmission id (e.g. 7 Automatic, 13 Manual).
year_min / year_maxintegerNoManufacture year range.
price_min / price_maxintegerNoFOB price in USD.
keywordstringNoKeyword or ref no.
max_resultsintegerNo50Maximum listings (12000).

Notes on filters

  • Prefer exact enum strings from the Apify input dropdowns (same values as beforward.jp).
  • input_url always wins over filters when provided.