Skip to main content
POST
/
api
/
aptoide
/
reviews
/
comments
/aptoide/reviews/comments
curl --request POST \
  --url https://api.anysite.io/api/aptoide/reviews/comments \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "review_id": 123,
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": 123,
    "@type": "AptoideReviewComment",
    "text": "<string>",
    "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
review_id
integer
required

Aptoide review id

Example:

123456

count
integer
required

Max number of comments 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
@type
string
default:AptoideReviewComment
text
string | null
added_at
string | null
user
object | null