Skip to main content
POST
/
api
/
amazon
/
appstore
/
apps
/
search
/amazon/appstore/apps/search
curl --request POST \
  --url https://api.anysite.io/api/amazon/appstore/apps/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "query": "<string>",
  "count": 2,
  "timeout": 300,
  "domain": "amazon.com",
  "sort": "featured",
  "four_stars_and_up": false,
  "min_price": 1,
  "max_price": 1
}
'
[
  {
    "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
query
string
required

Search keyword

Minimum string length: 1
Examples:

"puzzle"

"photo editor"

"vpn"

count
integer
required

Max number of results 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
category
enum<string> | null

Restrict to an app department.

Available options:
books_and_comics,
business,
communication,
customization,
education,
finance,
food_and_drink,
games,
health_and_fitness,
kids,
lifestyle,
local,
magazines,
medical,
movies_and_tv,
music_and_audio,
news,
novelty,
photo_and_video,
productivity,
reference,
shopping,
social,
sports,
transportation,
travel,
utilities,
weather
device
enum<string> | null

Restrict to apps compatible with a device type.

Available options:
fire_tablet,
fire_phone,
fire_tv,
echo_show,
fire_tv_edition_tv,
in_car
sort
enum<string>
default:featured

Result ordering.

Available options:
featured,
price_asc,
price_desc,
avg_review,
best_sellers
four_stars_and_up
boolean
default:false

Only apps rated 4 stars and up.

new_within
enum<string> | null

Only apps released within this window.

Available options:
last_30_days,
last_90_days
min_price
number | null

Minimum price filter (marketplace currency).

Required range: x >= 0
max_price
number | null

Maximum price filter (marketplace currency).

Required range: x >= 0

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