# How Bazaar — 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.

> Query items, skills, merchants, and monsters from the How Bazaar game database. Look up detailed information about in-game equipment, abilities, NPCs, and enemy encounters, with optional filters by hero, tier, size, and tag.

**Category:** Entertainment | **Website:** [howbazaar.gg/](https://howbazaar.gg/) | **Docs:** [parse.bot/marketplace/6b7a8721-9ee7-4c49-b711-4136a33c9908/howbazaar-gg-api](https://parse.bot/marketplace/6b7a8721-9ee7-4c49-b711-4136a33c9908/howbazaar-gg-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-howbazaar-gg-api-6b7a8721/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_items

Search and filter game items. Returns item details including tier progression tooltips, tags, enchantments, combat encounters, and image URLs. All items are returned when no filters are specified. Supports filtering by name substring, hero, size, starting tier, and tag category.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `hero` | string | No | Filter by hero name. Returns items belonging to the specified hero or to Common. |
| `query` | string | No | Search items by name (case-insensitive substring match). |
| `size` | string | No | Filter by item size. |
| `tag` | string | No | Filter by item tag. Matches against tags, hiddenTags, and customTags arrays on each item. |
| `tier` | string | No | Filter by starting tier. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-howbazaar-gg-api-6b7a8721/get_items \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"hero":"<string>","query":"<string>","size":"<string>","tag":"<string>","tier":"<string>"}'
```

### get_merchants

Retrieve all in-game merchants and their sale configurations. Returns merchant names, descriptions, hero associations, sale filters, and image URLs. No input parameters required.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-howbazaar-gg-api-6b7a8721/get_merchants \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_monsters

Retrieve monster encounter data organized by game day. Each day contains groups of monster encounters with their items, skills, health values, and image URLs. No input parameters required.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-howbazaar-gg-api-6b7a8721/get_monsters \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_skills

Search and filter game skills. Returns skill details including tier progression tooltips, tags, combat encounters, and image URLs. All skills are returned when no filters are specified. Supports filtering by name substring, hero, and starting tier.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `hero` | string | No | Filter by hero name. Returns skills belonging to the specified hero or to Common. |
| `query` | string | No | Search skills by name (case-insensitive substring match). |
| `tier` | string | No | Filter by starting tier. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-howbazaar-gg-api-6b7a8721/get_skills \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"hero":"<string>","query":"<string>","tier":"<string>"}'
```
