# Nike (India) — 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 Nike India's complete product catalog and filter items by gender and category to find exactly what you're looking for. Sort through results with pagination to discover shoes, apparel, and accessories that match your preferences.

**Category:** E-commerce | **Website:** [www.nike.in/lp/men-desktop](https://www.nike.in/lp/men-desktop) | **Docs:** [parse.bot/marketplace/76936ef4-fe02-44c8-b6ab-36f4177394a8/nike-in-api](https://parse.bot/marketplace/76936ef4-fe02-44c8-b6ab-36f4177394a8/nike-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-nike-in-api-76936ef4/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### list_products

List Nike India products filtered by gender and category. Returns paginated results sorted by the chosen criteria. Each product includes its name, type (subtitle), price in INR, and primary image URL.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category_id` | string | No | Numeric category ID for filtering products. Default '2' is the root catalog. |
| `gender` | string | No | Gender category filter. |
| `page` | integer | No | Page number for pagination (1-based). |
| `page_size` | integer | No | Number of products per page. |
| `sort` | string | No | Sort order for results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-nike-in-api-76936ef4/list_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category_id":"<string>","gender":"<string>","page":"<integer>","page_size":"<integer>","sort":"<string>"}'
```
