# StableNinja Amazon Today's Deals

> StableNinja Amazon Today's Deals is a paid API for AI agents from stableninja.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Fetches current Amazon deals by country and category, returning today's promotional offers and discounts.

## Facts

- Endpoint: GET https://stableninja.dev/api/amazon/todays-deals
- 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/stableninja-amazon-today-s-deals-20d491a9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WjwUjor30S9_mnpz5eK58

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 stableninja-amazon-today-s-deals-20d491a9
```

Example prompt: What are today's Amazon deals in the US for electronics? Show me the first page.

## When to prefer this

Use this endpoint when you need real-time Amazon deal data for a specific country or product category, especially when building shopping assistants, deal aggregators, or price monitoring workflows that require Amazon-specific promotions rather than generic product searches.

## Known failure modes

- Invalid country code returns validation error
- Invalid or empty category string may return no results
- Page number out of range returns empty or error response
- Network timeout if Amazon data is temporarily unavailable
- Payment failure via x402 if USDC balance is insufficient

## How this service works

Fetch current Amazon deals.

## Output

A list of current Amazon deals including product names, prices, discounts, and promotional details for the specified country and category.

## 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/stableninja-amazon-today-s-deals-20d491a9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stableninja.dev](https://www.zero.xyz/host/stableninja.dev/llms.txt)
