# Chewy — 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 pet products from Chewy.com, view detailed product information including prices and specifications, and read customer reviews to make informed purchasing decisions. Access comprehensive product catalogs and ratings all through a single integrated interface.

**Category:** E-commerce | **Website:** [chewy.com/](https://chewy.com/) | **Docs:** [parse.bot/marketplace/06778424-6261-4c37-a0bb-4e08555914dc/chewy-com-api](https://parse.bot/marketplace/06778424-6261-4c37-a0bb-4e08555914dc/chewy-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-chewy-com-api-06778424/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_product_details

Get product details including name, pricing, and active promotions for a Chewy product. Combines data from item info, promo-pricing, and promotions APIs. The product_id is a partNumber extractable from search result URLs (the numeric segment after /dp/).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product_id` | string | Yes | Product partNumber (e.g. '119446', '388673'). Found in product URLs after /dp/. |

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

### get_product_reviews

Get paginated product reviews for a Chewy product using GraphQL. Returns up to 10 reviews per page sorted by relevance, with cursor-based pagination. Each review includes rating, title, text, author name, and submission date.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `cursor` | string | No | Pagination cursor from a previous response's endCursor to retrieve the next page of reviews. |
| `product_id` | string | Yes | Product partNumber (e.g. '119446', '128666'). Found in product URLs after /dp/. |

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

### search_products

Search for products by keyword on Chewy.com. Returns a paginated list of products with names, images, prices, ratings, and URLs. Each page contains up to 36 products ordered by relevance.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination, starting at 1. |
| `query` | string | Yes | Search keyword (e.g. 'dog food', 'cat toys'). |

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