Discover/wlw API
live

wlw 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.

Endpoint health
verified 4d ago
search_products
search_suppliers
get_company_details
get_categories
4/4 passing latest checkself-healing
Endpoints
4
Updated
26d ago

What is the wlw 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.

Try it
Page number for pagination.
Max results per page.
Search keyword (e.g. 'Verpackungen', 'Maschinenbau').
api.parse.bot/scraper/0ab36412-bf36-40bc-bc2c-865879068dfd/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/0ab36412-bf36-40bc-bc2c-865879068dfd/search_products?page=1&limit=5&query=Verpackungen' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace wlw-at-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.wlw_at_b2b_supplier_api import Wlw, CompanySummary, Company, Category

wlw = Wlw()

# Search for suppliers in the packaging industry
for supplier in wlw.companysummaries.search(query="Verpackungen", limit=3):
    print(supplier.name, supplier.country_code, supplier.response_rate)

# Get full company details from a supplier summary
company = supplier.details()
print(company.name, company.phone_number, company.vat_id)
print(company.address.city, company.address.postal_code)

# Search for products
for product in wlw.products.search(query="Maschinenbau", limit=5):
    print(product.name, product.description, product.company.name)

# Browse categories for a given keyword
for cat in wlw.categories.list(query="Verpackungen"):
    print(cat.code, cat.name, cat.count)
All endpoints · 4 totalmissing one? ·

Search for products and services by keyword on the wlw.at B2B marketplace. Returns product/service listings with associated company names, product titles, descriptions, and category tags. Results are paginated with configurable page size.

Input
ParamTypeDescription
pageintegerPage number for pagination.
limitintegerMax results per page.
queryrequiredstringSearch keyword (e.g. 'Verpackungen', 'Maschinenbau').
Response
{
  "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": 2473,
        "pageSize": 5,
        "totalPages": 495,
        "currentPage": 1
      },
      "products": [
        {
          "name": "Konfektion & Versand",
          "slug": "konfektion-versand-33452340",
          "images": [
            {
              "url": "https://supplier-offers-media-production.s3.eu-central-1.amazonaws.com/1b5e8b27-528a-11f1-996b-0a58a9feac02.jpeg"
            }
          ],
          "company": {
            "name": "LVS Lohnverpackungsservice GmbH",
            "slug": "lvs-lohnverpackungsservice-gmbh-1728385",
            "country_code": "AT",
            "founding_year": "2011"
          },
          "description": "Bei Verpackungs- und Konzeptionsfragen...",
          "sell_points": [
            "Massgeschneiderte Verpackungsloesungen",
            "Komplettservice inkl. Etikettierung"
          ]
        }
      ],
      "totalCount": 2473
    },
    "status": "success"
  }
}

About the wlw API

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.

Reliability & maintenanceVerified

The wlw API is a managed, monitored endpoint for wlw.at — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when wlw.at changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official wlw.at API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
4d ago
Latest check
4/4 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build an Austrian supplier database by paginating search_suppliers results and storing founding_year, country_code, and distribution_area per company.
  • Enrich procurement records with verified contact details by calling get_company_details for each supplier slug to retrieve phoneNumber and vatId.
  • Validate VAT registration for Austrian B2B vendors using the vatId field from get_company_details.
  • Classify market segments by querying get_categories with industry keywords to retrieve category codes and result counts before a deeper product search.
  • Monitor product offerings from specific suppliers by combining search_products with get_company_details to cross-reference products at the company level.
  • Generate lead lists for Austrian industrial sectors by using search_suppliers with sector keywords like 'Maschinenbau' and extracting address and contact fields.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 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.

Frequently asked questions
Does wlw.at offer an official developer API?+
wlw.at does not publish a public developer API or documented REST interface for third-party access to its marketplace data.
What does `get_company_details` return beyond basic contact info?+
In addition to 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?+
The marketplace is Austria-focused and company results reflect suppliers listed on wlw.at, which primarily covers Austrian and DACH-region businesses. The 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?+
Not currently. The 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?+
Both 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.
Page content last updated . Spec covers 4 endpoints from wlw.at.
Related APIs in B2b DirectorySee all →
wlw.de API
Search for B2B suppliers and manufacturers on wlw.de, view detailed company profiles with contact information and product catalogs, and discover featured businesses and products. Find the right industrial suppliers and vendors quickly by browsing company details and product listings across Germany's largest B2B marketplace.
europages.fr API
Search for European suppliers and products, retrieve detailed company information and catalogs, and discover business listings across thousands of manufacturers and distributors on Europages. Find the right B2B partners by filtering suppliers, accessing company profiles, and browsing their product offerings all in one place.
we-online.com API
Search and access detailed specifications for electronic components from Würth Elektronik's catalog, including product categories, series information, and comprehensive article details. Quickly find the right components by browsing categories or looking up specific products with full technical data.
offenevergaben.at API
Search and explore Austrian public procurement contracts, including details about contracting authorities, suppliers, and product categories. Track government spending by accessing comprehensive information about individual contracts, the organizations that issue them, and the vendors that supply them.
willhaben.at API
Search and browse listings across Austria's largest classifieds platform. Access marketplace goods, real estate (for sale and rent), cars, jobs, and full listing details — all from a single API.
job.at API
Search and browse jobs on Austria's job.at platform, view detailed job listings with salary info and company details, and use autocomplete features to refine your search by location and keywords. Discover featured positions, explore job categories, and find related job titles to expand your career opportunities.
11880.com API
Search and discover millions of German businesses from 11880.com's comprehensive directory, instantly accessing company contact details, locations, and trade information. Get intelligent autocomplete suggestions for trades and cities to refine your business searches and find exactly who you're looking for.
globalsources.com API
Search Global Sources for products and suppliers, then fetch related product info and a supplier’s latest product listings using product IDs and organization IDs.