Skip to main content
POST
/
api
/
amazon
/
appstore
/
developers
/
apps
/amazon/appstore/developers/apps
curl --request POST \
  --url https://api.anysite.io/api/amazon/appstore/developers/apps \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "developer": "<string>",
  "count": 2,
  "timeout": 300,
  "domain": "amazon.com"
}
'
[
  {
    "id": "<string>",
    "url": "<string>",
    "@type": "AmazonAppSearchResult",
    "name": "<string>",
    "price": 123,
    "currency": "<string>",
    "is_free": true,
    "rating": 123,
    "rating_count": 123,
    "release_date": "<string>",
    "image": "<string>",
    "is_sponsored": false
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
developer
string
required

Developer identifier as returned in an app's developer.id field

Minimum string length: 1
Examples:

"Netflix, Inc"

"Mojang"

count
integer
required

Max number of apps to return

Required range: x >= 1
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:AmazonAppSearchResult
name
string | null
price
number | null
currency
string | null
is_free
boolean | null
rating
number | null
rating_count
integer | null
release_date
string | null
image
string | null
is_sponsored
boolean
default:false