GET /amazon/offers

Returns the products offers using as input the target asin and marketplace.

Endpoint currently in beta release. For any bug please reach info@asgardata.com

Request Headers

X-API-Key: your_api_key_here

Query Parameters

  • marketplace (required, string) - Amazon marketplace in ISO 3166-1 alpha-2. (Note that UK is “uk” not “gb”)

  • asin (required, string) - Amazon target product asin

Responses Codes

Status: 200 OK
Status: 400 Bad Request
Status: 401 Unauthorized
Status: 404 Not Found
Status: 500 Internal Server Error

Bad input or non-existing asins (404 from Amazon) requests will be charged anyway.

Request URL Example

https://api.asgardata.com/amazon/offers?marketplace=us&asin=B0C1PPWTWT

Response Example

{
  "ts": 1723071986677,
  "rid": "ba9c645d-74dc-4f9f-9ed4-79700d1b7a20",
  "params": {
    "marketplace": "us",
    "asin": "B0C1PPWTWT"
  },
  "result": {
    "buybox": {
      "seller_id": "A5VBTS25QCFU1",
      "price": "$29.99",
      "sold_by": "White House Liquidation Inc",
      "ships_from": "Amazon.com",
      "is_fba": true
    },
    "offers": [
      {
        "seller_id": "A5VBTS25QCFU1",
        "price": "$22.99",
        "condition": "Used - Very Good",
        "sold_by": "White House Liquidation Inc",
        "ships_from": "White House Liquidation Inc"
      },
      {
        "price": "$23.58",
        "condition": "Used - Like New",
        "sold_by": "Amazon Resale",
        "ships_from": "Amazon.com",
        "is_fba": true
      },
      ... // Continues
    ]
  }
}

Response example with no other offers

{
  "ts": 1723071986677,
  "rid": "ba9c645d-74dc-4f9f-9ed4-79700d1b7a20",
  "params": {
    "marketplace": "us",
    "asin": "B0C1PPWTWT"
  },
  "result": {
    "buybox": {
      "seller_id": "A5VBTS25QCFU1",
      "price": "$29.99",
      "sold_by": "White House Liquidation Inc",
      "ships_from": "Amazon.com",
      "is_fba": true
    }
}

Response example for bad/invalid ASIN

{
  "error": "Bad ASIN? Product not found, request has been charged.",
  "status": 404
}

Last updated