Skip to main content
POST
/
api
/
amazon
/
products
/amazon/products
curl --request POST \
  --url https://api.anysite.io/api/amazon/products \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "asin": "<string>",
  "timeout": 300,
  "domain": "amazon.com"
}
'
[
  {
    "id": "<string>",
    "url": "<string>",
    "@type": "@amazon_product",
    "title": "<string>",
    "brand": "<string>",
    "byline": "<string>",
    "price": 123,
    "currency": "<string>",
    "list_price": 123,
    "image": "<string>",
    "images": [],
    "rating": 123,
    "review_count": 123,
    "availability": "<string>",
    "is_in_stock": true,
    "description": "<string>",
    "features": [],
    "details": {},
    "breadcrumbs": [],
    "category": "<string>",
    "seller": {
      "@type": "@amazon_product_seller",
      "id": "<string>",
      "name": "<string>"
    },
    "ships_from": "<string>",
    "sold_by": "<string>",
    "variations": []
  }
]

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:

"B09B8V1LZ3"

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

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

id
string
required
url
string
required
@type
string
default:@amazon_product
title
string | null
brand
string | null
byline
string | null
price
number | null
currency
string | null
list_price
number | null
image
string | null
images
string[]
rating
number | null
review_count
integer | null
availability
string | null
is_in_stock
boolean | null
description
string | null
features
string[]
details
Details · object
breadcrumbs
string[]
category
string | null
seller
AmazonProductSeller · object
ships_from
string | null
sold_by
string | null
variations
AmazonProductVariation · object[]