AeroExpo Scraper - Aeronautical Products & Specs
Pricing
from $1.49 / 1,000 product records
AeroExpo Scraper - Aeronautical Products & Specs
Scrape AeroExpo aeronautical products for OEMs, MRO and buyers. Get title, model, manufacturer, characteristics, specs, images and PDF catalogs. Keyword, listing, stand or PDP — AeroExpo API alternative.
Pricing
from $1.49 / 1,000 product records
Rating
0.0
(0)
Developer
Andrej Kiva
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
2 days ago
Last modified
Categories
Share
AeroExpo Scraper — Aeronautical Products & Manufacturer Specs
Disclaimer: Unofficial integration for publicly accessible sources. Trademarks belong to their respective owners. Provided for informational use only; users must comply with applicable platform terms and laws.
Crawloop B2B aerospace data — AeroExpo aeronautical catalogs plus company directories (Europages / WLW).
| AeroExpo (aeronautical catalog) | Europages (EU directory) | WLW (DACH directory) |
|---|---|---|
| AeroExpo Scraper ◄── you are here | Europages Scraper | WLW Scraper |
| Aircraft, avionics, GSE, UAV, airport equipment, specs, PDF catalogs | EU companies, VAT, contacts | DE / AT / CH suppliers |
AeroExpo scraper for Apify — a practical AeroExpo API alternative that turns the aeronautical marketplace into structured JSON. Scrape product title, model, manufacturer, characteristics, specifications, images, PDF catalogs, and company websites from keywords, category listings, manufacturer stands, or product URLs.
Built for aerospace competitive intelligence, MRO and airport sourcing, OEM / UAV supplier discovery, and catalog monitoring. Run from the Console, Python, Node.js, or MCP. Fast HTTP crawl via curl_cffi — parses VirtualExpo __preloadData__ (no headless browser).
Use cases
| Use case | What you get |
|---|---|
| Product shortlists by type | Keyword → aeronautic-manufacturer listing → product rows (avionics, ground power, UAV, …) |
| Characteristic comparison | Applications, Material, Other characteristics and feature rows for side-by-side research |
| Manufacturer catalog pull | All products on a stand URL with optional full PDP enrichment |
| PDF catalog harvest | Linked datasheet / brochure titles and viewer URLs |
| Website enrichment | External manufacturer website + off-platform product link when published |
| Category deep-dive | /cat/ pages expand into child product-type listings |
When to use this Actor
- You need an AeroExpo scraper that returns dataset rows (not just company contacts)
- You have keywords, listing URLs, manufacturer stands, or product PDPs
- You want characteristics, specs, images, and PDF catalogs in one JSON export
- You prefer a browser-free crawl callable from Python, Node.js, cURL, or MCP
When not to use this Actor
- Guaranteed live prices / stock — most listings are RFQ / price-on-request
- Sending RFQs through the portal contact form — this Actor is read-only extraction
- Company-directory firmographics (VAT, phone) — use Europages or WLW instead
- Physical air-show exhibitor booth lists (e.g. Farnborough) — different job; this Actor is the year-round AeroExpo catalog
- Authenticated MySpace-only fields — public pages only
Key features
- Keyword search — resolves via AeroExpo kwref sitemaps to listing URLs
- Listing & category URLs — paginated
aeronautic-manufacturerpages;/cat/expands to children - Manufacturer stands — crawl all product cards on a company stand
- Product detail enrichment —
fetchDetailsparses__preloadData__for full specs - VirtualExpo portal switch — optional
portalfor sister hosts (MedicalExpo, DirectIndustry, …) - Streaming results — dataset rows appear while the run is in progress
- Deduped push — unique by
portal+productIdwithin a run - Pagination controls —
maxPages+maxItemsfor predictable run size - Lightweight & resilient — Chrome TLS fingerprinting, proxy session rotation on WAF challenges
Input parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
searchKeywords | Array | ["avionics"] | Keywords → kwref listing URLs. |
startUrls | Array | [] | Mixed product / manufacturer / listing / category URLs. |
listingUrls | Array | [] | aeronautic-manufacturer and/or /cat/ URLs. |
productUrls | Array | [] | Direct product detail URLs. |
manufacturerUrls | Array | [] | Manufacturer stand URLs. |
portal | String | "aeroexpo" | VirtualExpo host (aeroexpo, medicalexpo, …). |
fetchDetails | Boolean | true | Open PDPs for specs, description, images, catalogs. |
maxItems | Integer | 50 | Max dataset rows (0 = unlimited within maxPages). |
maxPages | Integer | 3 | Max listing pages per list URL. |
concurrency | Integer | 3 | Parallel PDP workers (1–15). |
proxyConfiguration | Object | residential FR | Apify Proxy — residential + country FR recommended. |
Example — keyword product crawl
{"searchKeywords": ["avionics"],"fetchDetails": true,"maxItems": 50,"maxPages": 3,"concurrency": 3,"proxyConfiguration": {"useApifyProxy": true,"apifyProxyGroups": ["RESIDENTIAL"],"apifyProxyCountry": "FR"}}
Example — manufacturer stand + product URLs
{"manufacturerUrls": [{ "url": "https://www.aeroexpo.online/prod/shantou-luoyi-trading-co-ltd-187978.html" }],"productUrls": [{ "url": "https://www.aeroexpo.online/prod/shantou-luoyi-trading-co-ltd/product-187978-82085.html" }],"fetchDetails": true,"maxItems": 100,"concurrency": 3}
Output
Each dataset item is one aeronautical product.
| Field | Description |
|---|---|
title / model | Product label and model designation |
companyName / companyId | Manufacturer stand name and id |
url / companyUrl | Product PDP and manufacturer stand URLs |
companyWebsite | External manufacturer website when published |
features | Characteristic rows (Applications, Material, …) |
specifications | Numeric / range specs (min / max / raw) |
images | Product image URLs |
catalogs | Linked PDF catalog title, URL, pages, language |
description | Full product description from the detail page |
category / breadcrumbs | Listing category and navigation path |
enriched | true when fields come from a product detail page |
Example (illustrative):
{"recordType": "product","portal": "aeroexpo","productId": "82085","companyId": "187978","title": "Airliner meal tray","model": "Kam Air","companyName": "Shantou Luoyi Trading Co., LTD","url": "https://www.aeroexpo.online/prod/shantou-luoyi-trading-co-ltd/product-187978-82085.html","companyUrl": "https://www.aeroexpo.online/prod/shantou-luoyi-trading-co-ltd-187978.html","description": "Feature: Anti-slip … Application: Airlines …","category": "Airliner meal tray","features": [{ "name": "Applications", "value": "for airliners" },{ "name": "Material", "value": "paper" }],"images": ["https://img.aeroexpo.online/images_ar/photo-g/….jpg"],"enriched": true,"scrapedAt": "2026-08-08T12:00:00Z"}
Integration examples
Node.js
import { ApifyClient } from 'apify-client';const client = new ApifyClient({ token: process.env.APIFY_TOKEN });const run = await client.actor('crawloop/aeroexpo-scraper').call({searchKeywords: ['avionics'],fetchDetails: true,maxItems: 50,proxyConfiguration: {useApifyProxy: true,apifyProxyGroups: ['RESIDENTIAL'],apifyProxyCountry: 'FR',},});const { items } = await client.dataset(run.defaultDatasetId).listItems();console.log(items.slice(0, 5));
Python
from apify_client import ApifyClientclient = ApifyClient(token)run = client.actor("crawloop/aeroexpo-scraper").call(run_input={"searchKeywords": ["avionics"],"fetchDetails": True,"maxItems": 50,"proxyConfiguration": {"useApifyProxy": True,"apifyProxyGroups": ["RESIDENTIAL"],"apifyProxyCountry": "FR",},})for item in client.dataset(run["defaultDatasetId"]).iterate_items():print(item.get("title"), item.get("model"), item.get("companyName"))
cURL
curl "https://api.apify.com/v2/acts/crawloop~aeroexpo-scraper/runs?token=$APIFY_TOKEN" \-H "Content-Type: application/json" \-d '{"searchKeywords":["avionics"],"fetchDetails":true,"maxItems":50,"proxyConfiguration":{"useApifyProxy":true,"apifyProxyGroups":["RESIDENTIAL"],"apifyProxyCountry":"FR"}}'
MCP and AI assistants
Use this Actor from AI tools via Apify MCP. Connect your Apify account, then call crawloop/aeroexpo-scraper.
Example prompts:
- "Run AeroExpo Scraper for keyword UAV, max 30, return title, model, companyName, features as JSON"
- "Scrape an AeroExpo manufacturer stand URL and summarize ground-support / GSE characteristics"
- "Chain AeroExpo Scraper then Europages Scraper to map aeronautical catalogs to EU company contacts"
Suite next step
For Europe-wide company contacts / VAT / firmographics, run Europages Scraper. For DACH-only suppliers, use WLW Scraper.
Related Actors
| Actor | Use for |
|---|---|
| AeroExpo Scraper ◄── you are here | Aeronautical catalog, characteristics, PDF catalogs |
| Europages Scraper | Europe-wide B2B directory, multi-locale, VAT & contacts |
| WLW Scraper | DACH (DE / AT / CH) B2B suppliers from Wer liefert was |
FAQ
Is this an AeroExpo API?
No official public product API is required. This Actor is an AeroExpo scraper / API alternative that returns structured dataset rows you can call from Python, Node.js, cURL, or MCP.
How do I scrape AeroExpo with Python or Node.js?
Use the Apify client examples above, or call the Actor from an AI assistant via Apify MCP. Export the default dataset as JSON, CSV, or Excel.
Does keyword search need exact listing URLs?
No — keywords are matched against AeroExpo kwref sitemaps (e.g. avionics → avionics listing). Prefer exact listing URLs when you already have them.
Can I scrape MedicalExpo or DirectIndustry with the same Actor?
Set portal to medicalexpo or directindustry (and other sister portals). Page patterns are shared across VirtualExpo; AeroExpo is the primary tested host for this Actor.
Why are some rows missing phone/email or price?
This Actor targets product catalog fields. AeroExpo is RFQ-oriented — public prices and manufacturer phones are usually not on product pages. Enrich firmographics with Europages or WLW.