# Cheapest Goo-net Scraper - Japanese Used Cars (`serp.cheap.ofc/goo-net-scraper`) Actor

Scrape Goo-net, Japan's biggest used-car marketplace. Search by brand, model or a pasted URL and pull full vehicle details: total & vehicle price, year, mileage, inspection, repair history, specs, equipment, warranty, dealer and photos. Pay per result, no start fee, no subscription.

- **URL**: https://apify.com/serp.cheap.ofc/goo-net-scraper.md
- **Developed by:** [serp.cheap](https://apify.com/serp.cheap.ofc) (community)
- **Categories:** E-commerce, Lead generation, Other
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per event

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

## Goo-net Scraper — Japanese Used Cars

Scrape **Goo-net** (グーネット), Japan's biggest used-car marketplace, on Apify. Search by brand,
model or a pasted Goo-net URL and pull **complete vehicle details** — total & vehicle price, year,
mileage, inspection, repair history, full specs, equipment, warranty and dealer info.

**Pay per result, no start fee, no subscription.**

### Why this one

- **The full detail surface.** Each vehicle returns everything Goo-net holds: total payment price
  and vehicle price (exact yen), model year, mileage, inspection expiry, repair history, one-owner
  and non-smoking flags, displacement, transmission, drivetrain, fuel, doors, seats, colour,
  steering side, the full equipment list, warranty terms, dealer name / prefecture / address / phone
  and every photo.
- **Flexible search.** By brand (`TOYOTA`, `HONDA`, `NISSAN`…) and model (`ALPHARD`, `PRIUS`…), or
  paste any Goo-net search URL. Pagination is automatic.
- **Self-monitored.** Every run checks upstream health, catching site changes early.

### Modes

Set `mode` in the input:

#### `search` — list used cars

`{ "mode": "search", "brand": "TOYOTA", "model": "ALPHARD" }`
or paste URLs: `{ "mode": "search", "searchUrls": ["https://www.goo-net.com/usedcar/brand-TOYOTA/car-ALPHARD/"] }`
Returns listing cards (id, title, total/vehicle price, year, mileage, inspection, repair history,
dealer, prefecture, thumbnail). Set `detailFollow: true` to also fetch each car's full detail page.

#### `detail` — full vehicle detail

`{ "mode": "detail", "detailUrls": ["https://www.goo-net.com/usedcar/spread/goo/13/700054067530260714004.html"] }`
Accepts Goo-net detail URLs. Returns the complete vehicle object.

#### `selftest` — free health check

Probes search + detail and reports which are healthy. No charge.

### Search filters

`brand`, `model`, `color`, `priceMax`, `mileageMax`, `yearMin` — or just paste `searchUrls`.
`maxItems` caps how many results are returned.

### Notes

- Output is two dataset views: **Used cars** (search cards) and **Vehicle detail** (full objects).
  Prices are in yen. Text fields (car names, colours, dealer) are in Japanese, as on Goo-net.
- **A residential proxy is recommended** for reliable results.

### Pricing

Pay per result — no monthly fee, no start fee. See the Store pricing panel.

# Actor input Schema

## `mode` (type: `string`):

'search' = list used-car results (by filters or a pasted Goo-net URL). 'detail' = full detail for specific vehicles. 'selftest' = free health check.

## `searchUrls` (type: `array`):

Paste one or more Goo-net search URLs (e.g. https://www.goo-net.com/usedcar/brand-TOYOTA/car-ALPHARD/). If set, the filters below are ignored. Pagination is automatic.

## `brand` (type: `string`):

Brand name in English caps as Goo-net uses it (TOYOTA, HONDA, NISSAN, SUZUKI, MAZDA, SUBARU, MITSUBISHI, LEXUS, BMW…).

## `model` (type: `string`):

Model name as Goo-net uses it (e.g. ALPHARD, PRIUS). Requires a brand.

## `color` (type: `string`):

Optional color facet (e.g. WHITE, BLACK).

## `priceMax` (type: `integer`):

Optional max total price, in man-yen (10,000 yen) units as Goo-net facets them.

## `mileageMax` (type: `integer`):

Optional max-mileage facet value.

## `yearMin` (type: `integer`):

Optional minimum model-year facet value.

## `detailUrls` (type: `array`):

For 'detail' mode: Goo-net vehicle detail URLs (…/usedcar/spread/goo/NN/STOCKID.html).

## `detailFollow` (type: `boolean`):

In 'search' mode, also fetch each car's detail page for the full spec/equipment surface. Costs one detail charge per car (slower).

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

Cap on cars returned (search) or detail pages (detail).

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

A residential proxy is recommended for reliable results. Japan-geo IPs can help at high volume.

## `debug` (type: `boolean`):

Verbose per-request logging for troubleshooting.

## Actor input object example

```json
{
  "mode": "search",
  "searchUrls": [],
  "detailFollow": false,
  "maxItems": 100,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  },
  "debug": false
}
```

# Actor output Schema

## `cars` (type: `string`):

No description

## `detail` (type: `string`):

No description

# 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 = {
    "searchUrls": []
};

// Run the Actor and wait for it to finish
const run = await client.actor("serp.cheap.ofc/goo-net-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 = { "searchUrls": [] }

# Run the Actor and wait for it to finish
run = client.actor("serp.cheap.ofc/goo-net-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 '{
  "searchUrls": []
}' |
apify call serp.cheap.ofc/goo-net-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,serp.cheap.ofc/goo-net-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/1ijggpdhKtoSDFPq2/builds/rfLr1QdwRokYVIxrL/openapi.json
