# Reap Real-Time Product Price Search

> Reap Real-Time Product Price 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).

Searches for real-time product prices across vendors, returning product details, pricing, vendor info, and links

## Facts

- Endpoint: POST https://www.reap.deals/search
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Success rate: 0% of calls made through Zero
- Activations on Zero: 1
- Tags: x402
- Canonical page: https://www.zero.xyz/c/reap-real-time-product-price-search-9abb042b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rc0f4c22_PKEa7hPFpyBh

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-real-time-product-price-search-9abb042b -d '<json body>'
```

Example prompt: Can you search Reap for the current price of Sony WH-1000XM5 headphones and tell me which vendor has the best deal right now?

## When to prefer this

Use this endpoint when you need real-time retail product prices and vendor information for a specific product or keyword. Prefer this over static product databases when freshness of pricing matters or when you need a direct purchase link and vendor attribution alongside the price.

## Known failure modes

- Empty or vague query returns no results or generic message
- Product not found returns null or empty fields
- Network timeout if real-time price feed is slow
- Malformed query string may return irrelevant results
- Rate limiting or payment failure if USDC payment not processed

## How this service works

Search for real-time product prices

## Output

Returns a product object with the product name, current price, vendor name, a link to the product listing, a product image URL, and an informational message about the search result.

## 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
{
 "link": "string",
 "image": "string",
 "price": "string",
 "vendor": "string",
 "message": "string",
 "product": "string"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/reap-real-time-product-price-search-9abb042b/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)
