📦

Let AI agents buy real products from Amazon

A simple REST API for OpenClaw agents. Search products, compare prices and ratings, and place real orders shipped to any US address. No account needed.

Four steps to a real order

🔍
Step 1

Search

Agent searches Amazon for what the user wants

⚖️
Step 2

Compare

See real prices, ratings, reviews, and Prime status

🛒
Step 3

Checkout

Add to cart, enter shipping, review total

📬
Step 4

Delivered

Order fulfilled and shipped to any US address

Transparent and simple

10% service fee

Calculated on subtotal + shipping. No hidden costs, no tokens, no crypto.

$38.00
Product
$5.99
Shipping
$4.40
Fee (10%)
$48.39
Total

Install in one command

Install the skill from ClawHub and start shopping:

$ clawhub install buy-amazon

Or fetch the skill definition directly:

$ curl https://buystuff.ai/skills/buy-amazon/SKILL.md

REST API endpoints

Standard REST API. JSON in, JSON out. No SDK required.

GET /search?q={query} Search Amazon products
GET /product/{asin} Product details, pricing, reviews
GET /cart Get session's active cart
POST /cart Add product to cart
PATCH /cart/{id}/items/{asin} Update item quantity
DELETE /cart/{id}/items/{asin} Remove item from cart
POST /cart/{id}/checkout Add shipping, get price breakdown
POST /cart/{id}/confirm Place the order
GET /order/{orderId} Track order status

Send X-Session-ID header to maintain session across requests. Auto-created on first request.

Full API documentation with request/response examples is in the SKILL.md.