# Abercrombie — 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 Abercrombie & Fitch products across categories, new arrivals, and clearance items while retrieving detailed product information like pricing and availability. Access curated collections and find exactly what you're looking for with powerful search capabilities.

**Category:** E-commerce | **Website:** [abercrombie.com/](https://abercrombie.com/) | **Docs:** [parse.bot/marketplace/2c06fb2f-25a1-486d-880a-e2cfc569e242/abercrombie-com-api](https://parse.bot/marketplace/2c06fb2f-25a1-486d-880a-e2cfc569e242/abercrombie-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-abercrombie-com-api-2c06fb2f/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_category_products

Retrieve all products within a named category or subcategory. The slug matches the URL path segment on abercrombie.com (e.g. 'womens-jeans', 'mens-tees'). Returns up to 90 products per request.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | Yes | Category slug as it appears in the site URL path (e.g. 'womens-jeans', 'mens-tees', 'womens-dresses') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-abercrombie-com-api-2c06fb2f/get_category_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>"}'
```

### get_clearance_products

Retrieve clearance (discounted) products for a given gender. Returns up to 90 products from the clearance category with name, price, URL, and badges.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `gender` | string | No | Gender category: 'womens' or 'mens' |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-abercrombie-com-api-2c06fb2f/get_clearance_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"gender":"<string>"}'
```

### get_new_arrivals

Retrieve new arrival products for a given gender. Returns up to 90 products from the new arrivals category with name, price, URL, and badges.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `gender` | string | No | Gender category: 'womens' or 'mens' |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-abercrombie-com-api-2c06fb2f/get_new_arrivals \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"gender":"<string>"}'
```

### get_product_details

Fetch full structured details for a single product by its URL or slug. Returns name, description, brand, price, availability status, and image URLs extracted from schema.org JSON-LD on the product page.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product` | string | Yes | Full product URL (e.g. 'https://www.abercrombie.com/shop/us/p/high-rise-bootcut-jean-61449875') or product slug from a URL path (e.g. 'high-rise-bootcut-jean-61449875') |

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

### get_product_reviews

Fetch customer reviews for a single product via the Bazaarvoice reviews API. Returns up to 8 most recent reviews with rating, title, text, author name, submission date, and recommendation status. Requires a product page fetch to resolve the internal review ID before querying reviews.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product` | string | Yes | Full product URL (e.g. 'https://www.abercrombie.com/shop/us/p/high-rise-wide-leg-jean-61786820') or product slug from a URL path (e.g. 'high-rise-wide-leg-jean-61786820') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-abercrombie-com-api-2c06fb2f/get_product_reviews \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"product":"<string>"}'
```

### search_products

Full-text search over the Abercrombie & Fitch product catalog. Returns up to 90 matching products with name, price, URL, and promotional badges. Results are ordered by the site's default relevance ranking.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search keyword (e.g. 'jeans', 'shirts', 'dress') |

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