Skip to main content
POST
/
api
/
google
/
play
/
apps
/
reviews
/google/play/apps/reviews
curl --request POST \
  --url https://api.anysite.io/api/google/play/apps/reviews \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "package": "<string>",
  "count": 2,
  "timeout": 300,
  "sort": "most_relevant"
}
'
[
  {
    "id": "<string>",
    "@type": "@google_play_review",
    "author": "<string>",
    "image": "<string>",
    "rating": 123,
    "text": "<string>",
    "created_at": 123,
    "app_version": "<string>",
    "helpful_count": 123,
    "developer_reply": "<string>",
    "reply_at": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
package
string
required

App package name

Minimum string length: 1
Example:

"com.whatsapp"

count
integer
required

Max number of reviews

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

Max scrapping execution timeout (in seconds)

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

Review ordering

Available options:
most_relevant,
newest,
rating

Response

Successful Response

id
string
required
@type
string
default:@google_play_review
author
string | null
image
string | null
rating
integer | null
text
string | null
created_at
integer | null
app_version
string | null
helpful_count
integer | null
developer_reply
string | null
reply_at
integer | null