Skip to main content
POST
/
api
/
aptoide
/
stores
/aptoide/stores
curl --request POST \
  --url https://api.anysite.io/api/aptoide/stores \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "store_name": "<string>",
  "timeout": 300
}
'
[
  {
    "name": "<string>",
    "@type": "AptoideStore",
    "id": 123,
    "image": "<string>",
    "description": "<string>",
    "badge": "<string>",
    "apps_count": 123,
    "subscriber_count": 123,
    "download_count": 123,
    "review_count": 123,
    "web_url": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
store_name
string
required

Aptoide store name

Minimum string length: 1
Examples:

"apps"

"aptoide-web"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

name
string
required
@type
string
default:AptoideStore
id
integer | null
image
string | null
description
string | null
badge
string | null
apps_count
integer | null
subscriber_count
integer | null
download_count
integer | null
review_count
integer | null
web_url
string | null