Skip to main content
POST
/
api
/
apkpure
/
apps
/
charts
/apkpure/apps/charts
curl --request POST \
  --url https://api.anysite.io/api/apkpure/apps/charts \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300,
  "chart_type": "app",
  "country": "en-US"
}
'
[
  {
    "rank": 123,
    "package_name": "<string>",
    "name": "<string>",
    "@type": "@apkpure_chart_app",
    "version": "<string>",
    "version_code": "<string>",
    "rating": 123,
    "developer": "<string>",
    "summary": "<string>",
    "category": "<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

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
chart_type
enum<string>
default:app

Which top chart to return

Available options:
game,
app
country
string
default:en-US

Country/locale the ranking is for

Examples:

"en-US"

"ja"

"pt-BR"

Response

Successful Response

rank
integer
required
package_name
string
required
name
string
required
@type
string
default:@apkpure_chart_app
version
string | null
version_code
string | null
rating
number | null
developer
string | null
summary
string | null
category
string | null
image
string | null