# Amazon ASIN Offers Lookup

> Amazon ASIN Offers Lookup is a paid API for AI agents from agent-commerce-factory-jm.austriaeast.cloudapp.azure.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns live Amazon seller listings, prices, conditions, and delivery options for a specific ASIN product identifier.

## Facts

- Endpoint: POST https://agent-commerce-factory-jm.austriaeast.cloudapp.azure.com/v1/amazon/offers
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/amazon-asin-offers-lookup-b210564c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eFdopgM6na0lMajyjn39h

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 amazon-asin-offers-lookup-b210564c -d '<json body>'
```

Example prompt: Can you pull up all the current Amazon seller offers for ASIN B08N5WRWNW — I want to see the prices, conditions (new vs used), seller names, and delivery options in the US?

## When to prefer this

Use this endpoint when you have a specific Amazon ASIN and need live, real-time seller offers including third-party marketplace listings, prices, conditions, and delivery options. Prefer this over a product search endpoint when you already know the ASIN and want granular per-seller pricing data rather than just top-level product info.

## Known failure modes

- Invalid or non-existent ASIN returns empty offers array or error
- ASIN with no active listings returns count of 0 with empty offers
- Invalid locationCode may return no results or default region offers
- Rate limiting or upstream Amazon unavailability may cause timeout or error
- ASIN string too short (under 5 chars) or too long (over 20 chars) triggers schema validation error

## Output

Returns an array of offer objects for the given ASIN, each containing the seller name, price, currency, product condition (new/used/etc.), delivery details, and offer URL. Also includes the total offer count and the ASIN queried.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "POST"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json",
      "form-data",
      "text"
     ]
    },
    "body": {
     "type": "object",
     "properties": {
      "asin": {
       "type": "string",
       "minLength": 5,
       "maxLength": 20
      },
      "locationCode": {
       "type": "integer",
       "minimum": 1,
       "default": 2840
      },
      "languageCode": {
       "type": "string",
       "default": "en_US"
      }
     },
     "required": [
      "asin"
     ]
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "machine": {
       "type": "string"
      },
      "route": {
       "type": "string"
      },
      "asin": {
       "type": "string"
      },
      "count": {
       "type": "integer"
      },
      "offers": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "seller": {
          "type": [
           "string",
           "null"
          ]
         },
         "price": {
          "type": [
           "number",
           "null"
          ]
         },
         "currency": {
          "type": [
           "string",
           "null"
          ]
         },
         "condition": {
          "type": [
           "string",
           "null"
          ]
         },
         "delivery": {
          "type": [
           "string",
           "null"
          ]
         },
         "url": {
          "type": [
           "string",
           "null"
          ]
         }
        }
       }
      },
      "economics": {
       "type": "object",
       "properties": {
        "sellPriceUsd": {
         "type": "number"
        },
        "upstreamCostUsdActual": {
         "type": [
          "number",
          "null"
         ]
        }
       }
      }
     },
     "required": [
      "machine",
      "route",
      "offers"
     ]
    }
   },
   "required": [
    "type"
   ]
  }
 },
 "required": [
  "input"
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/amazon-asin-offers-lookup-b210564c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent-commerce-factory-jm.austriaeast.cloudapp.azure.com](https://www.zero.xyz/host/agent-commerce-factory-jm.austriaeast.cloudapp.azure.com/llms.txt)
