# Reap Product Discovery Search

> Reap Product Discovery Search is a paid API for AI agents from www.reap.deals, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns personalized product search results with pricing, ratings, deals, and value scores from the Reap discovery engine.

## Facts

- Endpoint: POST https://www.reap.deals/products
- 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/reap-product-discovery-search-35c62a11
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QUAdYMBpaZkF3ZTXB2Flg

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 reap-product-discovery-search-35c62a11 -d '<json body>'
```

Example prompt: Can you search Reap for the best deals on wireless noise-cancelling headphones and show me the top results with prices, ratings, and value scores?

## When to prefer this

Use this endpoint when you need personalized product search results enriched with deal metadata, value scores, and ratings in a single call — especially when you want to surface the best-value products rather than just raw search results. Prefer over generic search APIs when deal quality and value scoring matter to the user.

## Known failure modes

- Missing required 'query' field returns a 400 validation error
- Empty or vague query may return zero results
- Query for a niche or misspelled product may return irrelevant results
- Payment failure (x402) prevents the call from completing
- Upstream discovery engine unavailability causes 503 errors

## How this service works

Get personalized product search results from the discovery engine.

## Output

An array of product objects each containing ASIN, product name, current price, price display string, deal description, source, product link, image URL, star rating, rating count, and a value score indicating deal quality.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "query"
 ],
 "properties": {
  "query": {
   "type": "string",
   "description": "Product name or keyword to search for."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "array",
 "items": {
  "type": "object",
  "properties": {
   "asin": {
    "type": "string"
   },
   "deal": {
    "type": "string"
   },
   "link": {
    "type": "string"
   },
   "name": {
    "type": "string"
   },
   "price": {
    "type": "number"
   },
   "rating": {
    "type": "number"
   },
   "source": {
    "type": "string"
   },
   "imageUrl": {
    "type": "string"
   },
   "valueScore": {
    "type": "number"
   },
   "ratingCount": {
    "type": "number"
   },
   "priceDisplay": {
    "type": "string"
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/reap-product-discovery-search-35c62a11/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.reap.deals](https://www.zero.xyz/host/www.reap.deals/llms.txt)
