Skip to main content
POST
/
api
/
google
/
play
/
apps
/
charts
/google/play/apps/charts
curl --request POST \
  --url https://api.anysite.io/api/google/play/apps/charts \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300,
  "category": "APPLICATION",
  "gl": "US",
  "hl": "en"
}
'
[
  {
    "rank": 123,
    "package": "<string>",
    "name": "<string>",
    "url": "<string>",
    "@type": "@google_play_chart_app",
    "developer": "<string>",
    "summary": "<string>",
    "rating": 123,
    "category": "<string>",
    "price": 123,
    "currency": "<string>",
    "install_count_display": "<string>",
    "content_rating": "<string>",
    "image": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
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
category
enum<string>
default:APPLICATION

Google Play app category

Available options:
APPLICATION,
GAME,
ART_AND_DESIGN,
AUTO_AND_VEHICLES,
BEAUTY,
BOOKS_AND_REFERENCE,
BUSINESS,
COMICS,
COMMUNICATION,
DATING,
EDUCATION,
ENTERTAINMENT,
EVENTS,
FINANCE,
FOOD_AND_DRINK,
HEALTH_AND_FITNESS,
HOUSE_AND_HOME,
LIBRARIES_AND_DEMO,
LIFESTYLE,
MAPS_AND_NAVIGATION,
MEDICAL,
MUSIC_AND_AUDIO,
NEWS_AND_MAGAZINES,
PARENTING,
PERSONALIZATION,
PHOTOGRAPHY,
PRODUCTIVITY,
SHOPPING,
SOCIAL,
SPORTS,
TOOLS,
TRAVEL_AND_LOCAL,
VIDEO_PLAYERS,
WEATHER,
GAME_ACTION,
GAME_ADVENTURE,
GAME_ARCADE,
GAME_BOARD,
GAME_CARD,
GAME_CASINO,
GAME_CASUAL,
GAME_EDUCATIONAL,
GAME_MUSIC,
GAME_PUZZLE,
GAME_RACING,
GAME_ROLE_PLAYING,
GAME_SIMULATION,
GAME_SPORTS,
GAME_STRATEGY,
GAME_TRIVIA,
GAME_WORD
Examples:

"GAME"

"APPLICATION"

gl
string
default:US

Region (ISO country code)

Required string length: 2
Examples:

"US"

"GB"

hl
string
default:en

Language (ISO code)

Required string length: 2 - 5
Examples:

"en"

"de"

Response

Successful Response

rank
integer
required
package
string
required
name
string
required
url
string
required
@type
string
default:@google_play_chart_app
developer
string | null
summary
string | null
rating
number | null
category
string | null
price
number | null
currency
string | null
install_count_display
string | null
content_rating
string | null
image
string | null