Skip to main content
POST
/
api
/
appstore
/
apps
/
search
/appstore/apps/search
curl --request POST \
  --url https://api.anysite.io/api/appstore/apps/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "term": "<string>",
  "count": 100,
  "timeout": 300,
  "country": "us"
}
'
[
  {
    "id": 123,
    "name": "<string>",
    "@type": "@appstore_app",
    "bundle_id": "<string>",
    "alias": "<string>",
    "url": "<string>",
    "description": "<string>",
    "developer_id": 123,
    "developer_name": "<string>",
    "developer_url": "<string>",
    "seller_name": "<string>",
    "seller_url": "<string>",
    "version": "<string>",
    "release_notes": "<string>",
    "released_at": "<string>",
    "current_version_released_at": "<string>",
    "price": 0,
    "formatted_price": "<string>",
    "currency": "<string>",
    "is_free": false,
    "category": "<string>",
    "category_id": 123,
    "genre_ids": [],
    "categories": [],
    "rating": 123,
    "rating_count": 0,
    "rating_current_version": 123,
    "rating_count_current_version": 0,
    "content_rating": "<string>",
    "advisories": [],
    "size_bytes": 123,
    "size": "<string>",
    "languages": [],
    "minimum_os_version": "<string>",
    "supported_devices": [],
    "image": "<string>",
    "screenshots": [],
    "has_in_app_purchases": false,
    "in_app_purchases": [],
    "privacy": [],
    "copyright": "<string>",
    "is_game_center_enabled": false
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
term
string
required

Search term — an app name, keyword, or developer

Minimum string length: 1
Examples:

"whatsapp"

"photo editor"

count
integer
required

Max number of results to return

Required range: 1 <= x <= 200
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
country
enum<string>
default:us

App Store storefront country

Available options:
us,
gb,
ca,
au,
de,
fr,
it,
es,
nl,
se,
jp,
kr,
cn,
in,
br,
mx,
ru,
tr,
pl,
ae,
sa,
sg,
hk,
tw,
id,
th,
vn,
ph,
my,
za

Response

Successful Response

id
integer
required
name
string
required
@type
string
default:@appstore_app
bundle_id
string | null
alias
string | null
url
string | null
description
string | null
developer_id
integer | null
developer_name
string | null
developer_url
string | null
seller_name
string | null
seller_url
string | null
version
string | null
release_notes
string | null
released_at
string | null
current_version_released_at
string | null
price
number
default:0
formatted_price
string | null
currency
string | null
is_free
boolean
default:false
category
string | null
category_id
integer | null
genre_ids
string[]
categories
string[]
rating
number | null
rating_count
integer
default:0
rating_current_version
number | null
rating_count_current_version
integer
default:0
content_rating
string | null
advisories
string[]
size_bytes
integer | null
size
string | null
languages
string[]
minimum_os_version
string | null
supported_devices
string[]
image
string | null
screenshots
string[]
has_in_app_purchases
boolean
default:false
in_app_purchases
AppstoreInAppPurchase · object[]
privacy
AppstorePrivacyType · object[]
is_game_center_enabled
boolean
default:false