# Truck1 Scraper — Used Trucks & Commercial Vehicles EU (`crawloop/truck1-scraper`) Actor

Scrape Truck1 used trucks, trailers, buses, and construction equipment: prices, mileage, Euro class, axle config, specs, images, and dealer company info. Category crawl or startUrls. Listings or details mode. Fast HTTP via curl\_cffi.

- **URL**: https://apify.com/crawloop/truck1-scraper.md
- **Developed by:** [Andrej Kiva](https://apify.com/crawloop) (community)
- **Categories:** E-commerce, Other
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.50 / 1,000 scraped truck1 details

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

## Truck1 Scraper — Used Trucks & Commercial Vehicles Europe

> **Crawloop Machinery & Commercial Vehicles** — Used equipment and vehicle listings across European marketplaces and dealers.

| Truck1 | MachineSeekers | Resale.info | Mobile.de | Surplex |
| :--- | :--- | :--- | :--- | :--- |
| **Truck1 Scraper** ◄── you are here | [MachineSeeker Scraper](https://apify.com/crawloop/machineseeker-scraper) | [Resale Scraper](https://apify.com/crawloop/resale-scraper) | [Mobile.de Scraper](https://apify.com/crawloop/mobile-de-scraper) | [Surplex Scraper](https://apify.com/crawloop/surplex-scraper) |

> **Disclaimer:** Unofficial integration for publicly accessible Truck1 listings. Not affiliated with, sponsored by, or endorsed by Truck1 or its operators. Trademarks belong to their respective owners.
>
> This Actor is provided **for informational and research purposes only** (market research, inventory monitoring, pricing workflows). You are solely responsible for ensuring your use complies with applicable laws, platform terms of use, and your organization's policies.
>
> No warranty is given as to accuracy, completeness, or continued availability of third-party data. Use at your own risk.

Scrape **used trucks**, **tractor units**, **trailers**, **vans**, **buses**, **construction machinery**, and related commercial equipment from Truck1 into clean JSON. Built for European B2B workflows: fleet sourcing, dealer intelligence, market pricing, and inventory monitoring. A Truck1 scraper / API alternative for Python, Node.js, and MCP workflows.

Supports **category crawls**, **brand filters**, **start URLs**, and **direct listing pages**. Choose `listings` mode for fast card-level catalogs or `details` mode for full product pages with technical specs, image galleries, Euro emission class, axle configuration, transmission, and seller company context (no phone numbers).

Lightweight HTTP extraction with TLS fingerprinting — no headless browser overhead.

### When to use this Actor

Use the **Truck1 Scraper** when you need:

- **Asking prices** and currency for used commercial vehicles across Europe
- **Technical attributes** — year, mileage, power (hp/kW), fuel type, Euro class, axle config (4x2, 6x4, …), transmission, weights, dimensions
- **Dealer / company context** — seller name, address, and country when published on the listing
- **Bulk catalog coverage** — 17 top-level categories (trucks, trailers, construction, agriculture, spare parts, and more)
- **Brand-filtered runs** — e.g. DAF, Volvo, Mercedes-Benz, Scania, MAN

Ideal for truck dealers, fleet buyers, market analysts, and data teams tracking the European used commercial vehicle market.

### Data pipeline

```
Input                              Mode                         Output
─────────────────────────         ────────────────────         ──────────────────────────

  Category / brand URL       ──►   listings (fast cards)  ──►  price, year, mileage
  Search / filtered URL      ──►   details  (full PDP)   ──►  specs, images, Euro, axle
  Direct listing URL         ──►                           ──►  seller company context
  categories[] + make

  Join by manufacturer + model ──► price benchmarking & inventory alerts
```

### Key Features

- **17 top-level categories** — trucks, tractor units, semi-trailers, trailers, vans, buses, campers, construction, material handling, agriculture, forestry, municipal, ground support, industrial, swap bodies, spare parts, other machinery.
- **Brand filter** — optional `make` applied as a path segment on category URLs.
- **Two extraction modes** — `listings` for card-level data; `details` for JSON-LD + HTML specs + description heuristics.
- **Deep vehicle attributes** — Euro class, axle configuration, transmission, net/gross weight, dimensions when available on the page or in the description.
- **Seller context without phones** — company name, address, country only.
- **Fast concurrent HTTP** — challenge bypass and parallel detail fetches; residential proxy recommended at scale.

### Input Parameters

| Parameter | Type | Default | Description |
| :--- | :--- | :--- | :--- |
| `startUrls` | Array | sample tippers URL | Category, brand, search, or listing detail URLs. |
| `categories` | Array | `["trucks"]` | Used when `startUrls` is empty. Empty array = all 17 categories. |
| `make` | String | `""` | Optional manufacturer filter (e.g. `DAF`, `Volvo`). |
| `runMode` | String | `"details"` | `"listings"` (cards) or `"details"` (full PDP). |
| `maxItems` | Integer | `100` | Maximum listings to return (`0` = unlimited). |
| `maxPagesPerUrl` | Integer | `5` | Pagination depth per start URL (`0` = until exhausted). |
| `concurrencyLimit` | Integer | `5` | Parallel detail workers (1–20). |
| `proxyConfiguration` | Object | Apify Proxy | Residential proxies recommended for large runs. |

#### Input example

```json
{
  "startUrls": [
    { "url": "https://www.truck1.eu/trucks/tippers" }
  ],
  "make": "",
  "runMode": "details",
  "maxItems": 50,
  "maxPagesPerUrl": 3,
  "concurrencyLimit": 5,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

### Output Format

Each row is pushed to the default dataset.

#### Details mode (enriched)

| Field | Description |
| :--- | :--- |
| `id`, `url`, `title` | Listing identifiers |
| `brand`, `model`, `category` | Vehicle identity |
| `price`, `currency` | Asking price |
| `year`, `mileageKm`, `fuelType` | Core vehicle facts |
| `powerHp`, `powerKw` | Engine power |
| `euroClass`, `axleConfig`, `transmission` | Drivetrain / emissions |
| `netWeightKg`, `grossWeightKg`, `dimensionsMm` | Weights and size |
| `firstRegistrationDate`, `referenceNumber` | Registration / ref |
| `location`, `country` | Listing location |
| `sellerName`, `sellerAddress`, `sellerCountry` | Dealer company (no phone) |
| `description`, `specs`, `images` | Free text, spec map, gallery |

#### Example record

```json
{
  "id": "11572087",
  "title": "DAF XF 530 FAT, 6x4, Kempf 3-Seiten Kipper, Bordmatik",
  "brand": "DAF",
  "model": "XF 530",
  "category": "tippers",
  "price": 59000,
  "currency": "EUR",
  "year": 2018,
  "mileageKm": 602000,
  "fuelType": "Diesel",
  "powerHp": 530,
  "powerKw": 390,
  "euroClass": "Euro 6C",
  "axleConfig": "6x4",
  "transmission": "Automatic",
  "netWeightKg": 11450,
  "grossWeightKg": 26000,
  "sellerName": "Staufen Trucks GmbH",
  "sellerCountry": "DE"
}
```

### Use cases

| Use case | What you get |
| :--- | :--- |
| **Fleet sourcing** | Asking prices, year, mileage, Euro class, axle config |
| **Dealer intelligence** | Seller company name, address, country (no phones) |
| **Market pricing** | Catalog or brand-filtered runs for benchmarking |
| **Inventory monitoring** | Scheduled category crawls → JSON / CSV / Excel |
| **AI / MCP workflows** | Run via Apify API, clients, or MCP |

### Integration examples

#### Node.js

```javascript
import { ApifyClient } from 'apify-client';

const client = new ApifyClient({ token: process.env.APIFY_TOKEN });
const run = await client.actor('crawloop/truck1-scraper').call({
  startUrls: [{ url: 'https://www.truck1.eu/trucks/tippers' }],
  runMode: 'details',
  maxItems: 50,
  maxPagesPerUrl: 3,
  proxyConfiguration: { useApifyProxy: true },
});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(items.slice(0, 5));
```

#### Python

```python
from apify_client import ApifyClient

client = ApifyClient(token)
run = client.actor("crawloop/truck1-scraper").call(
    run_input={
        "startUrls": [{"url": "https://www.truck1.eu/trucks/tippers"}],
        "runMode": "details",
        "maxItems": 50,
        "proxyConfiguration": {"useApifyProxy": True},
    }
)
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item.get("title"), item.get("price"), item.get("euroClass"))
```

#### cURL

```bash
curl "https://api.apify.com/v2/acts/crawloop~truck1-scraper/runs?token=$APIFY_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"startUrls":[{"url":"https://www.truck1.eu/trucks/tippers"}],"runMode":"details","maxItems":50,"proxyConfiguration":{"useApifyProxy":true}}'
```

### MCP and AI assistants

Use this Actor from AI tools via [Apify MCP](https://docs.apify.com/platform/integrations/mcp). Connect your Apify account, then call `crawloop/truck1-scraper`.

Example prompts:

- "Run Truck1 Scraper for tippers category, details mode, max 50, and return title, price, year, mileageKm"
- "Scrape Truck1 DAF trucks and summarize Euro class and axle configs"
- "Chain Truck1 then Mobile.de Scraper to compare commercial vehicle asking prices"

### Suite next step

For passenger / light commercial cars on Mobile.de, use [Mobile.de Scraper](https://apify.com/crawloop/mobile-de-scraper). For used industrial machinery boards, try [MachineSeeker Scraper](https://apify.com/crawloop/machineseeker-scraper) or [Resale Scraper](https://apify.com/crawloop/resale-scraper).

### Related Actors — Machinery & vehicles

| Focus | Actor |
| :--- | :--- |
| **Truck1 commercial vehicles EU** | **Truck1 Scraper** ◄── you are here |
| MachineSeeker machinery | [MachineSeeker Scraper](https://apify.com/crawloop/machineseeker-scraper) |
| Resale.info machinery | [Resale Scraper](https://apify.com/crawloop/resale-scraper) |
| Mobile.de vehicles | [Mobile.de Scraper](https://apify.com/crawloop/mobile-de-scraper) |
| Surplex industrial auctions | [Surplex Scraper](https://apify.com/crawloop/surplex-scraper) |

# Actor input Schema

## `startUrls` (type: `array`):

Category, brand, search, or listing detail URLs on truck1.eu (e.g. https://www.truck1.eu/trucks/tippers, https://www.truck1.eu/trucks/daf, or a direct \*-a123.html detail page). If empty, categories below are used.

## `categories` (type: `array`):

Used when startUrls is empty. Leave empty to scrape all top-level categories.

## `make` (type: `string`):

Optional manufacturer filter (e.g. DAF, Volvo, Mercedes-Benz). Appended as a brand slug on category URLs ( /trucks/daf ). Ignored for direct detail URLs.

## `runMode` (type: `string`):

listings = fast card-level data from search/category pages. details = visit each listing page for JSON-LD, full specs, images, and description heuristics (Euro class, axle config, transmission).

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

Maximum listings to return. 0 = unlimited.

## `maxPagesPerUrl` (type: `integer`):

Pagination depth per category/search URL. Each page has ~20 listings. 0 = until the site has no more pages.

## `concurrencyLimit` (type: `integer`):

Parallel detail-page workers. Keep moderate to avoid rate limits.

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

Optional. Residential proxies recommended for large crawls.

## Actor input object example

```json
{
  "startUrls": [
    {
      "url": "https://www.truck1.eu/trucks/tippers"
    }
  ],
  "categories": [
    "trucks"
  ],
  "make": "",
  "runMode": "details",
  "maxItems": 100,
  "maxPagesPerUrl": 5,
  "concurrencyLimit": 5,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# Actor output Schema

## `results` (type: `string`):

Default dataset items.

# 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 = {
    "startUrls": [
        {
            "url": "https://www.truck1.eu/trucks/tippers"
        }
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("crawloop/truck1-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 = { "startUrls": [{ "url": "https://www.truck1.eu/trucks/tippers" }] }

# Run the Actor and wait for it to finish
run = client.actor("crawloop/truck1-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "startUrls": [
    {
      "url": "https://www.truck1.eu/trucks/tippers"
    }
  ]
}' |
apify call crawloop/truck1-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=crawloop/truck1-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/LftRfBPKqA5pjySHm/builds/benfUT3OMSxhf2yQk/openapi.json
