# Shopsy — 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 products on Shopsy.in with detailed information like pricing, categories, and current deals, while easily navigating through paginated results. Get access to product specifications, homepage promotions, and category listings to compare items and find the best offers.

**Category:** E-commerce | **Website:** [shopsy.in/](https://shopsy.in/) | **Docs:** [parse.bot/marketplace/203996ea-21ac-41b6-8b3a-d1b0fb0ed13b/shopsy-in-api](https://parse.bot/marketplace/203996ea-21ac-41b6-8b3a-d1b0fb0ed13b/shopsy-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-shopsy-in-api-203996ea/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### browse_category

Browse products within a category using its URL slug. Returns paginated product listings.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category_slug` | string | Yes | Category URL slug as it appears in the shopsy.in URL path (e.g. 'casual-footwear-men-online', 'graphic-tshirts-online', 'kitchen-containers-online') |
| `page` | integer | No | Page number for pagination |
| `sid` | string | No | Store ID for filtering to a specific sub-category |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-shopsy-in-api-203996ea/browse_category \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category_slug":"<string>","page":"<integer>","sid":"<string>"}'
```

### get_homepage_deals

Get promotional banners and deals from the Shopsy homepage. Returns banner widget data including image URLs, navigation links to category pages, and tracking metadata. No input parameters required.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-shopsy-in-api-203996ea/get_homepage_deals \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_product_details

Get full details of a specific product including specifications, seller info, and ratings summary. Requires the full product page URL from shopsy.in (obtainable from search_products or browse_category results).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product_url` | string | Yes | Full URL of the product page on shopsy.in (e.g. https://www.shopsy.in/hotstyle-sneakers-men/p/itme9674fe04acd9?pid=EOEG69MNURBZZKSE) |

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

### search_products

Full-text search over Shopsy.in product catalog. Returns paginated product summaries with pricing, ratings, and availability.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination |
| `query` | string | Yes | Search keyword |
| `sort` | string | No | Sort option |

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