# Inkarto — 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 shop stationery and art supplies from Inkarto by viewing detailed product information, exploring collections and categories, and adding items directly to your cart. Get instant access to product details and organize your shopping all in one place.

**Category:** E-commerce | **Website:** [inkarto.com/](https://inkarto.com/) | **Docs:** [parse.bot/marketplace/efde717a-d527-4798-aca9-bf68a4b3fa74/inkarto-com-api](https://parse.bot/marketplace/efde717a-d527-4798-aca9-bf68a4b3fa74/inkarto-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-inkarto-com-api-efde717a/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### add_to_cart

Add a product variant to the shopping cart. Requires a variant_id (from product details) and an optional quantity. Returns confirmation with pricing and product metadata. Each call creates an independent cart session.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `quantity` | integer | No | Number of items to add. |
| `variant_id` | string | Yes | Numeric Shopify variant ID from get_product variants[*].id. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-inkarto-com-api-efde717a/add_to_cart \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"quantity":"<integer>","variant_id":"<string>"}'
```

### get_collection_products

List products in a collection (category) by its handle. Returns paginated product summaries including price, availability, and thumbnail image. Results are auto-iterated across pages.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `collection_handle` | string | Yes | Collection URL slug (e.g. 'shop-stationery-items-unique-stationery'). |
| `limit` | integer | No | Number of products per page (1–250). |
| `page` | integer | No | Page number for pagination. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-inkarto-com-api-efde717a/get_collection_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"collection_handle":"<string>","limit":"<integer>","page":"<integer>"}'
```

### get_product

Retrieve full product details by handle (URL slug). Returns title, description HTML, vendor, product type, tags, variants with pricing and availability, and all product images.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `handle` | string | Yes | Product URL slug (e.g. 'mochiri-co-japan-charcoal-honeycomb-fountain-pen-i-long-writing-partner'). |

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