# OpenWebNinja Amazon Today's Deals

> OpenWebNinja Amazon Today's Deals is a paid API for AI agents from openwebninja-x402.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Fetches current Amazon deals for a given country and optional category, paginated.

## Facts

- Endpoint: GET https://openwebninja-x402.vercel.app/api/amazon/todays-deals
- 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/openwebninja-amazon-today-s-deals-cf712dba
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rH96R_3e2ohagdZ5Vnr-Q

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 openwebninja-amazon-today-s-deals-cf712dba
```

Example prompt: What are today's Amazon deals in the US for electronics — can you show me the first page?

## When to prefer this

Use this endpoint when you need to discover current Amazon deals and promotions across specific countries or categories, especially for shopping assistants, deal-finding bots, or price comparison tools. Prefer this over product search when the goal is to surface discounted or featured items rather than search by keyword.

## Known failure modes

- Invalid country code returns validation error
- Category string not found returns empty results or error
- Page number out of range returns empty results
- Rate limiting or payment failure returns 402 or error response
- Amazon anti-scraping measures may cause intermittent failures

## How this service works

Fetch current Amazon deals.

## Output

A list of current Amazon deals including product names, prices, discounts, and category information for the specified country and optional category filter, paginated by page number.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "page": 1,
   "country": "US"
  }
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "properties": {
      "page": {
       "type": "integer",
       "maximum": 9007199254740991,
       "minimum": 1
      },
      "country": {
       "enum": [
        "US",
        "AU",
        "BR",
        "CA",
        "CN",
        "FR",
        "DE",
        "IN",
        "IT",
        "MX",
        "NL",
        "SG",
        "ES",
        "TR",
        "AE",
        "GB",
        "JP",
        "SA",
        "PL",
        "SE",
        "BE",
        "EG",
        "ZA",
        "IE"
       ],
       "type": "string"
      },
      "category": {
       "type": "string",
       "minLength": 1
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/openwebninja-amazon-today-s-deals-cf712dba/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from openwebninja-x402.vercel.app](https://www.zero.xyz/host/openwebninja-x402.vercel.app/llms.txt)
