# StableProducts Wirecutter Crawl

> StableProducts Wirecutter Crawl is a paid API for AI agents from stableproduct.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Crawls Wirecutter review pages to extract product recommendations and review data, returning structured results with optional scoop content.

## Facts

- Endpoint: POST https://stableproduct.dev/api/wirecutter/crawl
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stableproducts-wirecutter-crawl-966b969d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8iKajGB91RS3cO7JzYIbL

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability stableproducts-wirecutter-crawl-966b969d -d '<json body>'
```

Example prompt: Search Wirecutter for the best standing desk recommendations and return up to 10 results, recommendations only.

## When to prefer this

Choose this endpoint when you need live-crawled or freshly extracted Wirecutter recommendation data for a specific product query, especially when you want paginated results with concurrency control. Prefer the persisted Wirecutter database search sibling endpoint if you want faster lookups against already-indexed data rather than fresh crawls.

## Known failure modes

- Query string too long (over 200 characters) returns validation error
- Limit exceeds maximum of 100 returns schema error
- Wirecutter site unavailable causes crawl timeout or empty results
- Invalid concurrency value outside 1-8 range causes rejection
- No matching results for obscure query returns empty array

## How this service works

Product catalog APIs powered by x402.

## Output

Returns a paginated list of crawled Wirecutter review and recommendation data, including product picks, review titles, and optionally scoop content, structured as JSON objects per result.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "integer",
   "default": 25,
   "maximum": 100,
   "minimum": 1
  },
  "query": {
   "type": "string",
   "maxLength": 200,
   "minLength": 1
  },
  "offset": {
   "type": "integer",
   "default": 0,
   "maximum": 9007199254740991,
   "minimum": 0
  },
  "concurrency": {
   "type": "integer",
   "default": 4,
   "maximum": 8,
   "minimum": 1
  },
  "include_scoop": {
   "type": "boolean",
   "default": false
  },
  "recommendation_only": {
   "type": "boolean",
   "default": true
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stableproducts-wirecutter-crawl-966b969d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stableproduct.dev](https://www.zero.xyz/host/stableproduct.dev/llms.txt)
