Via Mobilis Scraper — Planet Trucks & Europe Camions
Pricing
from $1.29 / 1,000 scraped via mobilis listings
Via Mobilis Scraper — Planet Trucks & Europe Camions
Via Mobilis / Planet Trucks / Europe Camions scraper for used trucks, construction equipment, forklifts, and agri ads. Export price, year, hours, specs, images, and seller phone. Listings or full details via Apify.
Pricing
from $1.29 / 1,000 scraped via mobilis listings
Rating
0.0
(0)
Developer
Andrej Kiva
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
6 hours ago
Last modified
Categories
Share
Crawloop Machinery & Commercial Vehicles — Used equipment and vehicle listings across European marketplaces and dealers.
| Via Mobilis | Truck1 | MachineSeeker | Machineryline | Surplex |
|---|---|---|---|---|
| Via Mobilis Scraper ◄── you are here | Truck1 Scraper | MachineSeeker Scraper | Machineryline Scraper | Surplex Scraper |
Disclaimer: Unofficial integration for publicly accessible Via Mobilis network listings. Not affiliated with, sponsored by, or endorsed by Via Mobilis, Planet Trucks, Europe Camions, Europe Construction Equipment, or related 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.
Via Mobilis scraper (Planet Trucks / Europe Camions / Europe TP network) for Europe’s used trucks, tractor units, semi-trailers, excavators, forklifts, vans, and farm machines — into clean JSON via Apify. Paste category or listing URLs, or pick presets, then export price (often excl. VAT), year, hours / km, make / model, specs, images, and seller phone when published. Fast HTTP path (curl_cffi) with French residential proxy recommended for Cloudflare. Use as a Via Mobilis / Planet Trucks / Europe Camions API alternative from Python, Node.js, cURL, or MCP.
Best for: EU used-truck and construction-equipment comps, dealer lead lists, fleet sourcing, and cross-border inventory monitoring.
When to use this Actor
Use the Via Mobilis Scraper when you need:
- Truck & trailer pricing — tractor units, tippers, semi-trailers across Planet Trucks / Europe Camions mirrors
- Construction equipment intelligence — excavators, loaders, bulldozers, telehandlers with hours and weight
- Handling & agri stock — forklifts, aerial platforms, farm tractors
- Dealer contacts — seller name + phone on detail pages when disclosed
- One catalog, many portals — shared
listingIdacross language / vertical mirrors of the Via Mobilis network
Ideal for truck dealers, construction equipment brokers, fleet buyers, market analysts, and CRM enrichment pipelines.
Data pipeline
Input Mode Output───────────────────────── ──────────────────── ──────────────────────────Category / portal URL ──► listings (fast cards) ──► price, year, hours/kmcategories[] presets ──► details (full PDP) ──► specs, images, seller phoneDirect /ts-vi{ID}/ URL ──► ──► make, model, locationDedupe by listingId across Planet Trucks / Europe Camions / Europe TP mirrors
Key features
- Network coverage — Via Mobilis hub plus Planet Trucks, Europe Camions, Europe Construction Equipment, forklift, agri, and commercial-van mirrors
- Two extraction modes —
listingsfor card-level catalogs;detailsfor technical sheets with gallery and seller phone - Category presets — trucks, construction, vans, handling, farm, plus excavator, forklift, tractor unit, and more
- Rich listing cards — price, make, year, hours/km, city, country code, thumbnail, sale / rent / auction flags when present
- Detail enrichment — model, condition, engine power (kW), weight, specs table, photo gallery, dealer phone
- Fast concurrent HTTP — curl_cffi TLS fingerprinting; FR/EU residential proxy recommended at scale
Input parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
startUrls | Array | excavator sample | Category, search, or /ts-vi{ID}/ detail URLs on any network host |
categories | Array | ["excavator"] | Used when startUrls is empty |
runMode | String | listings | listings (cards) or details (full PDP) |
maxItems | Integer | 50 | Cap (0 = unlimited) |
maxPagesPerUrl | Integer | 3 | Pages per start URL (~20 ads/page; 0 = until exhausted) |
concurrencyLimit | Integer | 4 | Parallel detail workers (1–20) |
proxyConfiguration | Object | FR residential | Apify Proxy; FR/EU residential recommended |
Input example
{"startUrls": [{ "url": "https://www.via-mobilis.com/used/excavator/~a2b1" }],"runMode": "listings","maxItems": 50,"maxPagesPerUrl": 3,"concurrencyLimit": 4,"proxyConfiguration": {"useApifyProxy": true,"apifyProxyGroups": ["RESIDENTIAL"],"apifyProxyCountry": "FR"}}
Output format
Each row is pushed to the default dataset.
| Field | Description |
|---|---|
listingId | Via Mobilis ad id (ts-vi number) |
url, title, portal | Listing URL, title, hostname |
category, family | Category label and family (trucks / construction / …) |
make, model, year, condition | Identity fields |
price, priceCurrency, priceFormatted, priceExVat | Asking price |
forSale, forRent, forAuction | Offer type flags when present |
hours, mileageKm, powerKw, weightTonnes | Usage / technical measures |
countryCode, city, location | Geo |
sellerName, sellerPhone | Dealer contact on details |
specs, imageUrl, images | Specs map + gallery |
scrapedAt | UTC timestamp |
Output example
{"listingId": "11383699","url": "https://www.europe-construction-equipment.com/kubota-mini-excavator/lodi/ts-vi11383699/used.html","title": "Used Kubota mini excavator KX016-4","make": "Kubota","model": "KX016-4","year": 2015,"price": 15500,"priceCurrency": "EUR","priceExVat": true,"hours": 1771,"powerKw": 9.6,"weightTonnes": 16,"city": "Lodi","countryCode": "IT","sellerName": "Deal Di Balliu Mentor & c. Sas","sellerPhone": "+393293779028"}
Use cases
- EU excavator comps — track € excl. VAT and hours for Cat / Komatsu / Kubota stock
- Truck dealer monitoring — watch Planet Trucks / Europe Camions inventory by category URL
- Lead lists — export seller phones from detail mode into CRM
- Cross-portal dedupe — join on
listingIdacross language mirrors of the same network - Fleet sourcing — filter by year, hours, and country before contacting dealers
Integration examples
Node.js
import { ApifyClient } from 'apify-client';const client = new ApifyClient({ token: process.env.APIFY_TOKEN });const run = await client.actor('crawloop/via-mobilis-scraper').call({startUrls: [{ url: 'https://www.via-mobilis.com/used/excavator/~a2b1' }],runMode: 'listings',maxItems: 50,maxPagesPerUrl: 2,proxyConfiguration: {useApifyProxy: true,apifyProxyGroups: ['RESIDENTIAL'],apifyProxyCountry: 'FR',},});const { items } = await client.dataset(run.defaultDatasetId).listItems();console.log(items.slice(0, 3));
Python
from apify_client import ApifyClientclient = ApifyClient("YOUR_APIFY_TOKEN")run = client.actor("crawloop/via-mobilis-scraper").call(run_input={"startUrls": [{"url": "https://www.via-mobilis.com/used/excavator/~a2b1"}],"runMode": "details","maxItems": 25,"maxPagesPerUrl": 1,"proxyConfiguration": {"useApifyProxy": True,"apifyProxyGroups": ["RESIDENTIAL"],"apifyProxyCountry": "FR",},})for item in client.dataset(run["defaultDatasetId"]).iterate_items():print(item.get("listingId"), item.get("price"), item.get("sellerPhone"))
cURL
curl -X POST "https://api.apify.com/v2/acts/crawloop~via-mobilis-scraper/runs?token=YOUR_APIFY_TOKEN" \-H "Content-Type: application/json" \-d '{"startUrls": [{"url": "https://www.via-mobilis.com/used/excavator/~a2b1"}],"runMode": "listings","maxItems": 20,"maxPagesPerUrl": 1}'
MCP and AI assistants
Use this Actor from AI tools via Apify MCP. Connect your Apify account, then call this Actor by its Store ID / name.
Example prompts:
- "Run Via Mobilis Scraper for excavators, max 40 listings, and return price, year, hours as JSON"
- "Scrape Planet Trucks / Via Mobilis tractor units in details mode and list seller phones"
- "Chain Via Mobilis Scraper then Truck1 Scraper to compare excavator asking prices in Europe"
Suite next step
After catalog extraction here, enrich overlapping EU truck inventory with Truck1 Scraper or broaden construction coverage with Machineryline Scraper.
FAQ
Which sites does this Via Mobilis scraper cover?
Any URL on the Via Mobilis network that shares the same catalog IDs (ts-vi…), including via-mobilis.com, Planet Trucks, Europe Camions, Europe Construction Equipment, forklift and agri mirrors.
Is this a Planet Trucks / Europe Camions API alternative?
Yes for public listing extraction into JSON/CSV via Apify — category crawls, detail enrichment, and MCP / Python / Node workflows. Respect site terms and applicable law.
Why FR residential proxy?
The network sits behind Cloudflare. French/EU residential sessions are more reliable for larger crawls.
Listings vs details?
Use listings for fast discovery cards; use details when you need model, specs, gallery, and seller phone.
Related Actors
For a structured overview of Via Mobilis network coverage, listing and detail modes, equipment fields, API examples, MCP prompts, and dealer research workflows, see the Via Mobilis Scraper guide.