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

> Search and browse the Disney Store catalog by keyword, category, or new arrivals. Retrieve detailed product information including name, price, images, availability, and attributes across the full shopDisney merchandise range.

**Category:** E-commerce | **Website:** [shopdisney.com/](https://shopdisney.com/) | **Docs:** [parse.bot/marketplace/b441c5b0-c46b-4183-a0fa-5cae43a89a71/shopdisney-com-api](https://parse.bot/marketplace/b441c5b0-c46b-4183-a0fa-5cae43a89a71/shopdisney-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-shopdisney-com-api-b441c5b0/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_category_products

Browse products within a specific shopDisney category. Returns a paginated list of products. Category IDs correspond to site navigation slugs (e.g. 'toys', 'clothing', 'accessories', 'home', 'new').

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category_id` | string | Yes | Category ID slug from site navigation (e.g. 'toys', 'clothing', 'new', 'accessories', 'home'). |
| `sort` | string | No | Sorting rule. |
| `start` | integer | No | Pagination offset. |
| `sz` | integer | No | Number of results per page. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-shopdisney-com-api-b441c5b0/get_category_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category_id":"<string>","sort":"<string>","start":"<integer>","sz":"<integer>"}'
```

### get_new_arrivals

Retrieve the most recently added products on shopDisney. Equivalent to browsing the 'New' category, sorted by recency. Pagination is offset-based via `start`.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `start` | integer | No | Pagination offset. |
| `sz` | integer | No | Number of results per page. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-shopdisney-com-api-b441c5b0/get_new_arrivals \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"start":"<integer>","sz":"<integer>"}'
```

### get_product_details

Fetch comprehensive details for a single product by its ID. Returns name, price, full description text, image URLs, size/color attributes, stock availability, and breadcrumb category path. Product IDs come from listing endpoints (search_products, get_category_products, get_new_arrivals).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product_id` | string | Yes | Product ID from listing results (e.g. '5101057751157m'). |

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

### search_products

Full-text search across shopDisney products by keyword. Returns a paginated list of products sorted by the chosen rule. Pagination is offset-based via `start`; each page returns up to `sz` items. The total count reflects items available for the current page size window, not the full catalog match count.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search keyword (e.g. 'mickey', 'frozen', 'plush'). |
| `sort` | string | No | Sorting rule. |
| `start` | integer | No | Pagination offset. |
| `sz` | integer | No | Number of results per page. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-shopdisney-com-api-b441c5b0/search_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>","sort":"<string>","start":"<integer>","sz":"<integer>"}'
```
