Skip to main content
POST
/
api
/
amazon
/
sellers
/amazon/sellers
curl --request POST \
  --url https://api.anysite.io/api/amazon/sellers \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "seller": "<string>",
  "timeout": 300,
  "domain": "amazon.com"
}
'
[
  {
    "id": "<string>",
    "url": "<string>",
    "@type": "@amazon_seller",
    "name": "<string>",
    "rating": 123,
    "rating_count": 123,
    "positive_percent": 123,
    "about": "<string>",
    "business_name": "<string>",
    "business_address": "<string>",
    "phone": "<string>",
    "privacy_policy": "<string>",
    "rating_30d": {
      "@type": "@amazon_seller_rating_period",
      "rating": 123,
      "rating_count": 123
    },
    "rating_90d": {
      "@type": "@amazon_seller_rating_period",
      "rating": 123,
      "rating_count": 123
    },
    "rating_365d": {
      "@type": "@amazon_seller_rating_period",
      "rating": 123,
      "rating_count": 123
    },
    "rating_lifetime": {
      "@type": "@amazon_seller_rating_period",
      "rating": 123,
      "rating_count": 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
seller
string
required

Amazon seller ID or a seller profile URL containing it

Minimum string length: 1
Examples:

"A3J9LL0SKEEIO0"

"https://www.amazon.com/sp?seller=A1KWJVS57NX03I"

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_seller
name
string | null
rating
number | null
rating_count
integer | null
positive_percent
integer | null
about
string | null
business_name
string | null
business_address
string | null
phone
string | null
privacy_policy
string | null
rating_30d
AmazonSellerRatingPeriod · object
rating_90d
AmazonSellerRatingPeriod · object
rating_365d
AmazonSellerRatingPeriod · object
rating_lifetime
AmazonSellerRatingPeriod · object