Skip to main content
POST
/
api
/
amazon
/
products
/
offers
/amazon/products/offers
curl --request POST \
  --url https://api.anysite.io/api/amazon/products/offers \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "asin": "<string>",
  "timeout": 300,
  "domain": "amazon.com"
}
'
[
  {
    "asin": "<string>",
    "@type": "@amazon_offer",
    "price": 123,
    "currency": "<string>",
    "savings_percent": 123,
    "condition": "<string>",
    "condition_note": "<string>",
    "ships_from": "<string>",
    "sold_by": "<string>",
    "is_prime": false,
    "delivery": "<string>",
    "seller": {
      "@type": "@amazon_offer_seller",
      "id": "<string>",
      "name": "<string>",
      "rating": 123,
      "rating_count": 123,
      "positive_percent": 123
    }
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.anysite.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
asin
string
required

Amazon product ASIN or a product URL containing it

Minimum string length: 1
Examples:

"B07ZPKBL9V"

"https://www.amazon.com/dp/B09B8V1LZ3"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
domain
enum<string>
default:amazon.com

Amazon marketplace domain.

Available options:
amazon.com,
amazon.co.uk,
amazon.de,
amazon.fr,
amazon.it,
amazon.es,
amazon.ca,
amazon.co.jp,
amazon.com.mx,
amazon.com.br,
amazon.in,
amazon.com.au,
amazon.nl,
amazon.se,
amazon.pl,
amazon.com.tr,
amazon.ae,
amazon.sa,
amazon.sg

Response

Successful Response

asin
string
required
@type
string
default:@amazon_offer
price
number | null
currency
string | null
savings_percent
integer | null
condition
string | null
condition_note
string | null
ships_from
string | null
sold_by
string | null
is_prime
boolean
default:false
delivery
string | null
seller
AmazonOfferSeller · object