Skip to main content
POST
/
api
/
amazon
/
appstore
/
apps
/amazon/appstore/apps
curl --request POST \
  --url https://api.anysite.io/api/amazon/appstore/apps \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "app": "<string>",
  "timeout": 300,
  "domain": "amazon.com"
}
'
[
  {
    "id": "<string>",
    "url": "<string>",
    "@type": "AmazonApp",
    "name": "<string>",
    "developer": {
      "@type": "AmazonAppDeveloper",
      "id": "<string>",
      "name": "<string>",
      "email": "<string>",
      "website": "<string>"
    },
    "price": 123,
    "currency": "<string>",
    "is_free": true,
    "rating": 123,
    "rating_count": 123,
    "rating_breakdown": {},
    "content_rating": "<string>",
    "version": "<string>",
    "whats_new": [],
    "size": "<string>",
    "min_os": "<string>",
    "download_time": "<string>",
    "release_date": "<string>",
    "first_listed_date": "<string>",
    "sold_by": "<string>",
    "permissions": [],
    "languages": [],
    "compatible_devices": [],
    "image": "<string>",
    "images": [],
    "features": [],
    "description": "<string>",
    "data_privacy": [],
    "data_deletion": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
app
string
required

Amazon Appstore app ASIN or an app URL containing it

Minimum string length: 1
Examples:

"B005ZXWMUS"

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

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:AmazonApp
name
string | null
developer
object | null
price
number | null
currency
string | null
is_free
boolean | null
rating
number | null
rating_count
integer | null
rating_breakdown
object
content_rating
string | null
version
string | null
whats_new
string[]
size
string | null
min_os
string | null
download_time
string | null
release_date
string | null
first_listed_date
string | null
sold_by
string | null
permissions
string[]
languages
string[]
compatible_devices
string[]
image
string | null
images
string[]
features
string[]
description
string | null
data_privacy
object[]
data_deletion
string[]