# CrushRewards Deal Finder

> CrushRewards Deal Finder is a paid API for AI agents from api.crushrewards.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Discovers actively-promoted discounted products in a category above a minimum discount threshold, ranked by discount depth with price, list price, and retailer.

## Facts

- Endpoint: GET https://api.crushrewards.dev/v1/shopper/deal-finder
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-crushrewards-dev-5e870e16
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_34wRxrRrJFYhgY92j2vC8

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 api-crushrewards-dev-5e870e16
```

Example prompt: Find me the top 10 deals in the electronics category on Amazon in the US with at least 25% off, ranked by biggest discount.

## When to prefer this

Use this endpoint when you need to surface actively-promoted, discounted products in a specific category ranked by discount depth — especially when you want to filter by a minimum discount threshold and optionally restrict to a single retailer. Prefer this over general product search when the goal is finding deals and promotions rather than browsing all products in a category.

## Known failure modes

- Missing required 'category' parameter returns a 400 validation error
- Unsupported retailer value outside the allowed enum returns a validation error
- Unsupported country code outside 'us'/'ca' returns a validation error
- min_discount_pct out of range (0-100) returns a validation error
- Payment not provided or insufficient USDC balance returns a 402 Payment Required
- No deals found for a niche category returns an empty deals array with total_deals_found of 0

## How this service works

Real-time pricing, promotions, and competitive intelligence across US and Canadian retailers — exposed as paid API endpoints and MCP tools that AI agents can call directly, with x402 and MPP micropayments per query.

## Output

A list of up to 50 deal objects each containing product name, retailer, current price, list price, discount percentage, brand, in-stock status, star rating, and review count — plus top-level metadata for category, country, currency, and total deals found.

## Example request

```json
{
 "country": "us",
 "category": "electronics",
 "retailer": "amazon",
 "min_discount_pct": 15
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-crushrewards-dev-5e870e16/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.crushrewards.dev](https://www.zero.xyz/host/api.crushrewards.dev/llms.txt)
