# Boygars — 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 explore the full product catalog from Boygars luxury multibrand store in Tbilisi, filtering by gender categories and viewing detailed information about each item. Access pricing, descriptions, and product specifications to discover high-end fashion and lifestyle products available at this Georgian retailer.

**Category:** E-commerce | **Website:** [boygars.com/](https://boygars.com/) | **Docs:** [parse.bot/marketplace/2df92737-cb1b-481f-aafc-ae5fa72b7cdf/boygars-com-api](https://parse.bot/marketplace/2df92737-cb1b-481f-aafc-ae5fa72b7cdf/boygars-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-boygars-com-api-2df92737/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_product

Retrieves full details for a single product including name, description, composition, pricing, available sizes, color variants with media URLs, and stock information. The item_id comes from list_products results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `item_id` | string | Yes | Numeric product identifier from list_products (e.g. '9556'). |

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

### list_products

Returns the full product catalog as item/color pairs. Each record carries an item_id and a color_id; multiple records may share the same item_id when that item is available in several colors. Optionally filter by gender. The response is a single page containing all matching products.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `gender` | string | No | Filter products by gender category. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-boygars-com-api-2df92737/list_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"gender":"<string>"}'
```
