Skip to main content
POST
/
api
/
google
/
play
/
apps
/google/play/apps
curl --request POST \
  --url https://api.anysite.io/api/google/play/apps \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "package": "<string>",
  "timeout": 300
}
'
[
  {
    "package": "<string>",
    "name": "<string>",
    "@type": "@google_play_app",
    "developer": "<string>",
    "developer_id": "<string>",
    "developer_url": "<string>",
    "summary": "<string>",
    "description": "<string>",
    "rating": 123,
    "rating_count": 123,
    "install_count": 123,
    "install_count_display": "<string>",
    "price": 123,
    "currency": "<string>",
    "version": "<string>",
    "content_rating": "<string>",
    "category": "<string>",
    "category_id": "<string>",
    "has_ads": false,
    "chart_label": "<string>",
    "chart_rank": "<string>",
    "released_at": "<string>",
    "updated_at": "<string>",
    "whats_new": "<string>",
    "in_app_purchase_price_range": "<string>",
    "rating_histogram": {},
    "permissions": [],
    "data_safety": [],
    "image": "<string>",
    "cover": "<string>",
    "screenshots": [],
    "website": "<string>",
    "email": "<string>",
    "privacy_policy_url": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
package
string
required

App package name

Minimum string length: 1
Example:

"com.whatsapp"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

package
string
required
name
string
required
@type
string
default:@google_play_app
developer
string | null
developer_id
string | null
developer_url
string | null
summary
string | null
description
string | null
rating
number | null
rating_count
integer | null
install_count
integer | null
install_count_display
string | null
price
number | null
currency
string | null
version
string | null
content_rating
string | null
category
string | null
category_id
string | null
has_ads
boolean
default:false
chart_label
string | null
chart_rank
string | null
released_at
string | null
updated_at
string | null
whats_new
string | null
in_app_purchase_price_range
string | null
rating_histogram
Rating Histogram · object
permissions
GooglePlayPermission · object[]
data_safety
GooglePlayDataSafety · object[]
image
string | null
cover
string | null
screenshots
string[]
website
string | null
email
string | null
privacy_policy_url
string | null