# glim.sh Amazon Product Lookup

> glim.sh Amazon Product Lookup is a paid API for AI agents from surf.cascade.fyi, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Fetches live Amazon product pricing, stock status, and offers by ASIN across multiple regional storefronts

## Facts

- Endpoint: POST https://surf.cascade.fyi/api/v1/amazon/get
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 1
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glim-sh-amazon-product-lookup-6011c3ae
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZbgP1XaQUnVpUuh3Q8C4U

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 glim-sh-amazon-product-lookup-6011c3ae -d '<json body>'
```

Example prompt: Can you check the current Amazon.de price and stock status for ASIN B0F59XT8QM? I want the detailed breakdown including any used offers.

## When to prefer this

Use this endpoint when an agent needs live Amazon product pricing or stock data for a known ASIN without setting up a scraping stack or Amazon API credentials. Best for spot-checking individual products across regional Amazon storefronts (com, co.uk, de, fr, es, it). Not suitable for bulk product discovery or keyword-based searches.

## Known failure modes

- Invalid or non-existent ASIN returns empty or error response
- Product not available in the specified regional TLD
- Payment failure (402) if USDC balance insufficient
- Stale or unavailable data if Amazon blocks the underlying scrape
- Unsupported TLD value rejected by enum validation

## How this service works

One remote endpoint gives your agent live data from Twitter, Reddit, the open web, GitHub and more. No API keys, no scraping stack - just connect the URL and go.

## Output

Returns a JSON object with the product's current gross price, currency, stock status string, and a list of offers (each with condition and price) for the specified Amazon regional storefront and ASIN.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "tld": {
   "enum": [
    "com",
    "co.uk",
    "de",
    "fr",
    "es",
    "it"
   ],
   "type": "string",
   "default": "com",
   "description": "Amazon marketplace: com | co.uk | de | fr | es | it"
  },
  "asin": {
   "type": "string",
   "pattern": "^[A-Z0-9]{10}$",
   "description": "10-char Amazon product ID (ASIN). Obtain a real ASIN from glim_amazon_search results; do not invent or reuse example ASINs."
  },
  "response_format": {
   "enum": [
    "concise",
    "detailed"
   ],
   "type": "string",
   "default": "concise",
   "description": "'concise' drops images/variants/deep seller metadata; 'detailed' keeps everything"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "tld": "de",
  "asin": "B0F59XT8QM",
  "stock": "Auf Lager",
  "offers": [
   {
    "condition": "Gebraucht - Akzeptabel",
    "price_gross": 525.22
   }
  ],
  "currency": "EUR",
  "price_gross": 782.04
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/glim-sh-amazon-product-lookup-6011c3ae/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from surf.cascade.fyi](https://www.zero.xyz/host/surf.cascade.fyi/llms.txt)
