Skip to main content
POST
/
api
/
aptoide
/
apps
/
reviews
/aptoide/apps/reviews
curl --request POST \
  --url https://api.anysite.io/api/aptoide/apps/reviews \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "app": "<string>",
  "count": 2,
  "timeout": 300,
  "sort": "latest",
  "order": "desc"
}
'
[
  {
    "id": 123,
    "@type": "AptoideReview",
    "review_title": "<string>",
    "text": "<string>",
    "rating": 123,
    "likes": 123,
    "comment_count": 123,
    "added_at": "<string>",
    "user": {
      "@type": "AptoideReviewUser",
      "id": 123,
      "name": "<string>",
      "image": "<string>"
    }
  }
]

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 reviews to return

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

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
sort
enum<string>
default:latest

Review ordering criterion

Available options:
latest,
rating
order
enum<string>
default:desc

Sort direction

Available options:
desc,
asc

Response

Successful Response

id
integer
required
@type
string
default:AptoideReview
review_title
string | null
text
string | null
rating
integer | null
likes
integer | null
comment_count
integer | null
added_at
string | null
user
object | null