# Harborfreight — 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 Harbor Freight Tools products by name or category to get real-time pricing, customer reviews, brand information, and detailed product specifications. Filter results using category facets to quickly find deals and compare tools across different product lines.

**Category:** E-commerce | **Website:** [harborfreight.com/](https://harborfreight.com/) | **Docs:** [parse.bot/marketplace/59fa58ae-0958-4329-82e5-4fd5bc042fe3/harborfreight-com-api](https://parse.bot/marketplace/59fa58ae-0958-4329-82e5-4fd5bc042fe3/harborfreight-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-harborfreight-com-api-59fa58ae/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_products

Search for products on Harbor Freight. Returns paginated product listings with pricing, reviews, brand info, variants, member deals, and category/brand facets for filtering. Handles keyword-to-category redirects automatically. Each page includes brand and category facets alongside the product list. Paginates via integer page counter; the SDK auto-advances pages.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `include_reviews` | string | No | Include review ratings and counts. Accepted values: 'true', 'false'. |
| `page` | integer | No | Page number for pagination |
| `page_size` | integer | No | Number of results per page (max 36) |
| `query` | string | Yes | Search query (e.g., 'drill', 'welding gloves', 'wrench set') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-harborfreight-com-api-59fa58ae/search_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"include_reviews":"<string>","page":"<integer>","page_size":"<integer>","query":"<string>"}'
```
