Skip to main content
POST
/
api
/
appbrain
/
apps
/appbrain/apps
curl --request POST \
  --url https://api.anysite.io/api/appbrain/apps \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "app": "<string>",
  "timeout": 300
}
'
[
  {
    "package_name": "<string>",
    "name": "<string>",
    "@type": "AppbrainApp",
    "developer": "<string>",
    "developer_url": "<string>",
    "category": "<string>",
    "image": "<string>",
    "description": "<string>",
    "version": "<string>",
    "size": "<string>",
    "rating": 123,
    "rating_count": 123,
    "price": 123,
    "price_currency": "<string>",
    "is_free": true,
    "content_rating": "<string>",
    "min_android_version": "<string>",
    "has_ads": true,
    "ranking_status": "<string>",
    "total_download_count": 123,
    "recent_download_count": 123,
    "library_count": 123,
    "permission_count": 123,
    "published_at": 123,
    "updated_at": 123,
    "google_play_url": "<string>",
    "screenshots": [],
    "libraries": [],
    "permissions": [],
    "rankings": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
app
string
required

Android package name, an AppBrain app URL, or a Google Play app URL

Minimum string length: 1
Examples:

"com.whatsapp"

"com.spotify.music"

"https://www.appbrain.com/app/whatsapp-messenger/com.whatsapp"

"https://play.google.com/store/apps/details?id=com.whatsapp"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

package_name
string
required
name
string
required
@type
string
default:AppbrainApp
developer
string | null
developer_url
string | null
category
string | null
image
string | null
description
string | null
version
string | null
size
string | null
rating
number | null
rating_count
integer | null
price
number | null
price_currency
string | null
is_free
boolean | null
content_rating
string | null
min_android_version
string | null
has_ads
boolean | null
ranking_status
string | null
total_download_count
integer | null
recent_download_count
integer | null
library_count
integer | null
permission_count
integer | null
published_at
integer | null
updated_at
integer | null
google_play_url
string | null
screenshots
string[]
libraries
object[]
permissions
object[]
rankings
object[]