# Intelligentsia — 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 Intelligentsia Coffee's full product catalog, search for specific coffees, explore curated collections, and access detailed product information including variants and pricing. You can also filter products by type—such as subscription coffees or goods—to find exactly what you're looking for.

**Category:** E-commerce | **Website:** [intelligentsia.com/](https://intelligentsia.com/) | **Docs:** [parse.bot/marketplace/bb698e1a-a6a9-4573-ba70-07fafe56a5ae/intelligentsia-com-api](https://parse.bot/marketplace/bb698e1a-a6a9-4573-ba70-07fafe56a5ae/intelligentsia-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-intelligentsia-com-api-bb698e1a/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_product_details

Returns full details for a single product by its handle (slug), including all variants with barcodes, options, images, and metadata. The response is a flat product object with id, title, handle, body_html, vendor, product_type, tags, variants, options, and images at the top level.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `handle` | string | Yes | The product handle/slug (e.g. 'black-cat-classic-espresso'). Obtainable from list or search endpoints. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-intelligentsia-com-api-bb698e1a/get_product_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"handle":"<string>"}'
```

### get_product_variants_and_pricing

Extracts variant-level data and pricing for a product, including SKUs, weights, barcodes, price currencies, and availability. Returns a focused view of just the product identity and its variants array.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `handle` | string | Yes | The product handle/slug (e.g. 'black-cat-classic-espresso'). Obtainable from list or search endpoints. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-intelligentsia-com-api-bb698e1a/get_product_variants_and_pricing \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"handle":"<string>"}'
```

### list_all_coffee_products

Returns all coffee and espresso products from the main coffee collection. Fetches all pages automatically. Each product includes full variant details, images, tags, and pricing.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-intelligentsia-com-api-bb698e1a/list_all_coffee_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### list_all_collections

Returns all available product collections with their handles, titles, descriptions, and product counts. Use collection handles with list_products_by_collection to browse specific categories.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-intelligentsia-com-api-bb698e1a/list_all_collections \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### list_goods_products

Returns non-coffee merchandise products including brewing equipment, accessories, and other goods from the all-goods collection. Fetches all pages automatically.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-intelligentsia-com-api-bb698e1a/list_goods_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### list_products_by_collection

Returns products filtered by a specific collection handle. Fetches all pages automatically. Use list_all_collections to discover available collection handles.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `collection_handle` | string | Yes | The collection handle/slug (e.g. 'blends', 'all-espresso', 'single-origin'). Obtainable from list_all_collections endpoint. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-intelligentsia-com-api-bb698e1a/list_products_by_collection \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"collection_handle":"<string>"}'
```

### list_subscription_products

Returns subscription-eligible products from the coffee filter subscriptions collection. These are products available for recurring delivery.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-intelligentsia-com-api-bb698e1a/list_subscription_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### search_products

Searches products across the site using keywords. Returns matching products with basic info, pricing, and image URLs. Results are limited to the top matches from Shopify's suggest endpoint.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search keyword (e.g. 'espresso', 'blend', 'ethiopia') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-intelligentsia-com-api-bb698e1a/search_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>"}'
```
