# WLW Austria — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Search for products and suppliers on Austria's wlw.at B2B marketplace, then retrieve detailed company information including contact numbers, VAT IDs, and business details. Browse product categories and discover verified suppliers to streamline your procurement process.

**Category:** Business Directories | **Website:** [wlw.at/](https://wlw.at/) | **Docs:** [parse.bot/marketplace/938d00a7-0889-413a-8df3-9eaca3a3207e/wlw-at-api](https://parse.bot/marketplace/938d00a7-0889-413a-8df3-9eaca3a3207e/wlw-at-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-wlw-at-api-938d00a7/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_categories

Extract product/industry categories for a given search query. Returns categories with their codes, names, and result counts from the search API filters. Useful for discovering category taxonomy before narrowing product searches.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | No | Search keyword to retrieve relevant categories for. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-wlw-at-api-938d00a7/get_categories \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>"}'
```

### get_company_details

Fetch the full profile for a specific company by slug. Includes address, contact info, phone number, VAT ID, products, categories, and employee information. The slug is obtained from search_products or search_suppliers results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Company slug from search results (e.g. 'lvs-lohnverpackungsservice-gmbh-1728385'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-wlw-at-api-938d00a7/get_company_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### search_products

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.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Max results per page. |
| `page` | integer | No | Page number for pagination. |
| `query` | string | Yes | Search keyword (e.g. 'Verpackungen', 'Maschinenbau'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-wlw-at-api-938d00a7/search_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","page":"<integer>","query":"<string>"}'
```

### search_suppliers

Search for B2B suppliers/companies by keyword. Returns a list of unique companies with metadata including country, founding year, response rate. Results are paginated.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. |
| `query` | string | Yes | Search keyword (e.g. 'Maschinenbau', 'Verpackungen'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-wlw-at-api-938d00a7/search_suppliers \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","query":"<string>"}'
```
