# Hygenall — 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 and retrieve detailed information about Hygenall's industrial hygiene and decontamination products, including lead removal soaps and wipes, from their complete product catalog. Access individual product specifications to find the right contamination solutions for your industrial safety needs.

**Category:** E-commerce | **Website:** [hygenall.com/](https://hygenall.com/) | **Docs:** [parse.bot/marketplace/020ca4a7-3476-4ccb-9df1-2a661499bee1/hygenall-com-api](https://parse.bot/marketplace/020ca4a7-3476-4ccb-9df1-2a661499bee1/hygenall-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-hygenall-com-api-020ca4a7/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_product

Get detailed information about a specific product by its slug (from list_products results). Returns full product details including description, which is not available in the listing.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Product URL slug from list_products results (e.g. 'leadoff-soap-8-oz'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-hygenall-com-api-020ca4a7/get_product \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### list_products

List products from the Hygenall catalog with pagination. Returns up to 12 products per page. Each product includes its slug which can be used with the get_product endpoint for full details including description.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. Each page returns up to 12 products. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-hygenall-com-api-020ca4a7/list_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>"}'
```
