Skip to main content
POST
/
api
/
aptoide
/
apps
/
versions
/aptoide/apps/versions
curl --request POST \
  --url https://api.anysite.io/api/aptoide/apps/versions \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "app": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": 123,
    "name": "<string>",
    "package": "<string>",
    "@type": "AptoideApp",
    "alias": "<string>",
    "size": 123,
    "image": "<string>",
    "cover": "<string>",
    "added_at": "<string>",
    "modified_at": "<string>",
    "updated_at": "<string>",
    "description": "<string>",
    "summary": "<string>",
    "whats_new": "<string>",
    "keywords": [],
    "screenshots": [],
    "videos": [],
    "web_url": "<string>",
    "mobile_url": "<string>",
    "download_count": 123,
    "play_download_count": 123,
    "age": {
      "@type": "AptoideAppAge",
      "name": "<string>",
      "rating": "<string>",
      "pegi": "<string>"
    },
    "developer": {
      "@type": "AptoideDeveloper",
      "id": 123,
      "name": "<string>",
      "website": "<string>",
      "email": "<string>",
      "privacy_url": "<string>"
    },
    "store": {
      "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>"
    },
    "file": {
      "@type": "AptoideAppFile",
      "version_name": "<string>",
      "version_code": 123,
      "md5": "<string>",
      "size": 123,
      "sha1": "<string>",
      "signature_owner": "<string>",
      "min_sdk": 123,
      "screen": "<string>",
      "gles": 123,
      "abis": [],
      "densities": [],
      "malware_rank": "<string>",
      "download_url": "<string>",
      "download_url_alt": "<string>",
      "added_at": "<string>",
      "tags": [],
      "used_features": [],
      "used_permissions": []
    },
    "rating": {
      "@type": "AptoideAppRating",
      "avg": 123,
      "count": 0,
      "votes": []
    },
    "play_rating": {
      "@type": "AptoideAppRating",
      "avg": 123,
      "count": 0,
      "votes": []
    }
  }
]

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, numeric Aptoide app id, or an Aptoide app URL

Minimum string length: 1
Examples:

"com.whatsapp"

"75513329"

count
integer
required

Max number of versions to return

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

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
integer
required
name
string
required
package
string
required
@type
string
default:AptoideApp
alias
string | null
size
integer | null
image
string | null
cover
string | null
added_at
string | null
modified_at
string | null
updated_at
string | null
description
string | null
summary
string | null
whats_new
string | null
keywords
string[]
screenshots
string[]
videos
string[]
web_url
string | null
mobile_url
string | null
download_count
integer | null
play_download_count
integer | null
age
object | null
developer
object | null
store
object | null
file
object | null
rating
object | null
play_rating
object | null