wlw.at APIwlw.at ↗
Search Austrian B2B suppliers and products on wlw.at. Retrieve company profiles with VAT IDs, phone numbers, addresses, and product categories via 4 endpoints.
curl -X GET 'https://api.parse.bot/scraper/0ab36412-bf36-40bc-bc2c-865879068dfd/search_products?page=1&limit=15&query=Verpackungen' \ -H 'X-API-Key: $PARSE_API_KEY'
Search for products and services by keyword. Returns product/service listings with associated company names, product titles, descriptions, and category tags. Results are paginated.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number for pagination. |
| limit | integer | Max results per page. |
| queryrequired | string | Search keyword (e.g. 'Verpackungen', 'Maschinenbau'). |
{
"type": "object",
"fields": {
"paging": "object with total, totalPages, pageSize, currentPage",
"products": "array of product objects, each containing name, slug, description, company info, images, and sell_points",
"totalCount": "integer total number of matching products"
},
"sample": {
"data": {
"paging": {
"total": 2513,
"pageSize": 15,
"totalPages": 168,
"currentPage": 1
},
"products": [
{
"name": "Konfektion & Versand",
"slug": "konfektion-versand-33452340",
"company": {
"name": "LVS Lohnverpackungsservice GmbH",
"slug": "lvs-lohnverpackungsservice-gmbh-1728385",
"country_code": "AT"
},
"description": "Bei Verpackungs- und Konzeptionsfragen...",
"sell_points": [
"Maßgeschneiderte Verpackungslösungen"
]
}
],
"totalCount": 2513
},
"status": "success"
}
}About the wlw.at API
The wlw.at API provides access to Austria's B2B marketplace through 4 endpoints covering product search, supplier discovery, company profiles, and category browsing. The get_company_details endpoint returns structured contact data including phone numbers, VAT IDs, and full postal addresses. The search_products endpoint supports keyword-driven queries like 'Verpackungen' or 'Maschinenbau' and returns paginated product listings with associated company metadata.
Search Products and Suppliers
The search_products endpoint accepts a required query string along with optional page and limit parameters for pagination. Each result in the products array includes a product name, slug, description, sell points, images, and nested company information. The response also exposes a paging object with total, totalPages, pageSize, and currentPage fields, allowing precise traversal of large result sets.
The search_suppliers endpoint takes the same query and page inputs but returns a deduplicated companies array. Each company object includes name, slug, country_code, founding_year, is_customer, logo_url, distribution_area, and certification data — useful for building supplier qualification workflows or sourcing lists.
Company Profiles and Category Browsing
The get_company_details endpoint takes a slug from any search result and returns a full company profile. Response fields include vatId, structured address (with addressLines, city, postalCode, and countryCode), phoneNumber, a description string, an array of products the company offers, and categories representing their business segments. This is the primary endpoint for enriching procurement records with verified contact and registration data.
The get_categories endpoint accepts an optional query string and returns an array of category objects, each with a code, a name, and a count of matching results. This is useful for understanding how the marketplace classifies a given industry segment before running a full supplier or product search.
- Build an Austrian supplier database by paginating
search_suppliersresults and storingfounding_year,country_code, anddistribution_areaper company. - Enrich procurement records with verified contact details by calling
get_company_detailsfor each supplier slug to retrievephoneNumberandvatId. - Validate VAT registration for Austrian B2B vendors using the
vatIdfield fromget_company_details. - Classify market segments by querying
get_categorieswith industry keywords to retrieve category codes and result counts before a deeper product search. - Monitor product offerings from specific suppliers by combining
search_productswithget_company_detailsto cross-reference products at the company level. - Generate lead lists for Austrian industrial sectors by using
search_supplierswith sector keywords like 'Maschinenbau' and extracting address and contact fields.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does wlw.at offer an official developer API?+
What does `get_company_details` return beyond basic contact info?+
phoneNumber and vatId, the endpoint returns a structured address object (with addressLines, city, postalCode, and countryCode), a description string, the company's products array, and categories representing their business segments. The slug used to call the endpoint comes from any search_suppliers or search_products result.Does the API cover companies from countries other than Austria?+
country_code field in supplier results indicates origin, but broad international coverage beyond this region is not guaranteed.Does the API return email addresses for companies?+
get_company_details endpoint exposes phoneNumber, vatId, and postal address fields but does not include an email address field. You can fork this API on Parse and revise it to add an endpoint targeting contact pages where email data may be present.How does pagination work across endpoints?+
search_products and search_suppliers return a paging object containing total, totalPages, pageSize, and currentPage. Use the page parameter to step through results. The limit parameter is available on search_products to control page size; search_suppliers uses a fixed page size.