Amazon product data on demand with key details including ASIN, title, brand, price, curren
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
30000 (raw units)
price
3
calls / 30d
1
unique payers
2026-09-09
updated
Provider
techforce-agents.onrender.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x2f6bA59f09Fd4693c6Df12aec5acf14A4bA43f1d",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "30000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"domain": "www.amazon.com",
"max": 10,
"q": "wireless earbuds"
},
"type": "http"
},
"output": {
"example": {
"items": [
{
"asin": "B09JZXQ3P1",
"availability": "In stock",
"brand": "SoundCore",
"currency": "USD",
"price": 29.99,
"priceRaw": "$29.99",
"rating": 4.4,
"reviewsCount": 12873,
"thumbnailUrl": "https://m.media-amazon.com/images/I/61sample1.jpg",
"title": "Wireless Earbuds Bluetooth 5.3, 40H Playtime",
"url": "https://www.amazon.com/dp/B09JZXQ3P1"
}
]
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"domain": {
"description": "Amazon marketplace (optional, default www.amazon.com)",
"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"
},
"max": {
"description": "Number of products to return (min 1, max 1000)",
"type": "integer"
},
"q": {
"description": "Search keywords, e.g. 'wireless earbuds'",
"type": "string"
}
},
"required": [
"q"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"items": {
"description": "Array of Amazon products",
"items": {
"properties": {
"asin": {
"description": "Amazon Standard Identification Number",
"type": "string"
},
"availability": {
"description": "Stock availability",
"type": "string"
},
"brand": {
"description": "Brand name",
"type": "string"
},
"currency": {
"description": "Currency code",
"type": "string"
},
"price": {
"description": "Numeric price",
"type": "number"
},
"priceRaw": {
"description": "Formatted price with currency symbol",
"type": "string"
},
"rating": {
"description": "Average rating out of 5",
"type": "number"
},
"reviewsCount": {
"description": "Number of reviews",
"type": "integer"
},
"thumbnailUrl": {
"description": "Product image URL",
"type": "string"
},
"title": {
"description": "Product title",
"type": "string"
},
"url": {
"description": "Product page URL",
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://techforce-agents.onrender.com/api/amazon-products" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://techforce-agents.onrender.com/api/amazon-products");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://techforce-agents.onrender.com/api/amazon-products")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/8215.json, and this resource appears in /discovery/resources and /discovery/search.