# Techforce Agents Amazon Products

> Techforce Agents Amazon Products is a paid API for AI agents from techforce-agents.onrender.com, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Search Amazon product listings by keyword and marketplace, returning key product details like ASIN, price, rating, and availability

## Facts

- Endpoint: GET https://techforce-agents.onrender.com/api/amazon-products
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/techforce-agents-amazon-products-3c196273
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tmz_NnLtyRa_4_mTShSOX

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 techforce-agents-amazon-products-3c196273
```

Example prompt: Search Amazon US for 'noise cancelling headphones' and give me the top 10 results with prices, ratings, and review counts.

## When to prefer this

Use this endpoint when you need live Amazon product data including prices, ratings, and availability across multiple international marketplaces on demand, billed per record at $0.03 USDC. Prefer this over static product databases when freshness matters, or when you need to search across specific Amazon regional marketplaces like Amazon India, UK, Germany, Canada, Australia, or UAE.

## Known failure modes

- Missing required 'q' query parameter returns an error
- Invalid or unsupported marketplace domain returns an error
- 'max' value exceeding 1,000 may be rejected or capped
- No results found for obscure or misspelled keywords
- Payment failure (insufficient USDC balance) blocks the request
- Service may return partial results if Amazon rate-limits the underlying scrape

## How this service works

Amazon product data on demand with key details including ASIN, title, brand, price, currency, rating, review count, availability, thumbnail, and product URL. Get results for $0.03 per record (minimum 1, up to 1,000). Enter your search keywords, optionally choose an Amazon marketplace (com, in, co.uk, de, ca, com.au, ae), and the number of products you need. Discover live Amazon product listings in seconds.

Powered by Techforce Global — explore more at https://techforceglobal.com

## Output

Returns an array of Amazon product objects, each containing the ASIN, product title, brand name, numeric price, currency code, formatted price string, average star rating out of 5, number of reviews, stock availability status, product page URL, and thumbnail image URL. Up to 1,000 products can be returned per request.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "q"
     ],
     "properties": {
      "q": {
       "type": "string",
       "description": "Search keywords, e.g. 'wireless earbuds'"
      },
      "max": {
       "type": "integer",
       "description": "Number of products to return (min 1, max 1000)"
      },
      "domain": {
       "enum": [
        "www.amazon.com",
        "www.amazon.in",
        "www.amazon.co.uk",
        "www.amazon.de",
        "www.amazon.ca",
        "www.amazon.com.au",
        "www.amazon.ae"
       ],
       "type": "string",
       "description": "Amazon marketplace (optional, default www.amazon.com)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "items": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "url": {
          "type": "string",
          "description": "Product page URL"
         },
         "asin": {
          "type": "string",
          "description": "Amazon Standard Identification Number"
         },
         "brand": {
          "type": "string",
          "description": "Brand name"
         },
         "price": {
          "type": "number",
          "description": "Numeric price"
         },
         "title": {
          "type": "string",
          "description": "Product title"
         },
         "rating": {
          "type": "number",
          "description": "Average rating out of 5"
         },
         "currency": {
          "type": "string",
          "description": "Currency code"
         },
         "priceRaw": {
          "type": "string",
          "description": "Formatted price with currency symbol"
         },
         "availability": {
          "type": "string",
          "description": "Stock availability"
         },
         "reviewsCount": {
          "type": "integer",
          "description": "Number of reviews"
         },
 
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/techforce-agents-amazon-products-3c196273/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from techforce-agents.onrender.com](https://www.zero.xyz/host/techforce-agents.onrender.com/llms.txt)
