# Bahco — 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.

> Browse Bahco Australia's complete tool and product catalog organized by category to find specific items and their details. Quickly search through product listings to discover Bahco's offerings across different categories and sections.

**Category:** E-commerce | **Website:** [www.bahco.com/au_en/products/wrenches/adjustable-wrenches.html](https://www.bahco.com/au_en/products/wrenches/adjustable-wrenches.html) | **Docs:** [parse.bot/marketplace/be82f3a8-e716-43c4-92e8-eae0f1bc0a24/bahco-com-api](https://parse.bot/marketplace/be82f3a8-e716-43c4-92e8-eae0f1bc0a24/bahco-com-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-bahco-com-api-be82f3a8/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### list_category_products

Lists every product shown on a given Bahco Australia product category page. Returns the ordering number (part number/SKU), full product name, model or series designation, and product detail page URL for each item. The category page itself does not display technical specifications — those are available only on individual product detail pages. Parent category pages (e.g. /au_en/products/wrenches.html) may return zero products if they contain only subcategory links rather than product listings.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category_path` | string | Yes | The category page URL path on bahco.com/au_en, e.g. /au_en/products/wrenches/adjustable-wrenches.html or /au_en/products/files/engineering-files.html. A full URL (https://www.bahco.com/au_en/...) is also accepted. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-bahco-com-api-be82f3a8/list_category_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category_path":"<string>"}'
```
