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

> Retrieve detailed product information from itsybitsy.in including all variants, pricing, specifications, customer reviews, and frequently bought-together recommendations in one request. Get everything you need to compare products, understand pricing options, and see what other customers are purchasing without visiting the website.

**Category:** E-commerce | **Website:** [itsybitsy.in/products/home-decor-chak-paint-20-ml?variant=42252732104771](https://itsybitsy.in/products/home-decor-chak-paint-20-ml?variant=42252732104771) | **Docs:** [parse.bot/marketplace/3858b86d-94a2-489f-a23d-31719801739e/itsybitsy-in-api](https://parse.bot/marketplace/3858b86d-94a2-489f-a23d-31719801739e/itsybitsy-in-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-itsybitsy-in-api-3858b86d/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_product

Retrieve complete product data by handle. Returns all variant details with pricing, product specifications and description, customer reviews from Judge.me, and frequently bought-together product recommendations. Each variant includes SKU, price, compare-at price, and option values. Reviews include rating, author, title, body, date, and verification status.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product_id` | string | Yes | Product handle (URL slug) as it appears in the product page URL, e.g. 'home-decor-chak-paint-20-ml'. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-itsybitsy-in-api-3858b86d/get_product \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"product_id":"<string>"}'
```

### list_categories

Retrieve all product categories (collections) from the site. Returns every category with its handle, title, product count, and metadata. Results are fetched in full (all pages aggregated server-side); no pagination parameter is needed.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-itsybitsy-in-api-3858b86d/list_categories \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### list_category_products

Retrieve products from a specific category (collection) by its handle. Returns product summaries including variants, images, options, and pricing. Paginated by page number; the SDK auto-iterates pages. An unrecognized handle returns an empty product list (the upstream does not distinguish nonexistent from empty).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category_handle` | string | Yes | Category handle (URL slug) as returned by list_categories, e.g. 'art-supplies'. |
| `limit` | integer | No | Number of products per page (1-250). |
| `page` | integer | No | Page number for pagination (1-based). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-itsybitsy-in-api-3858b86d/list_category_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category_handle":"<string>","limit":"<integer>","page":"<integer>"}'
```
