Skip to main content
POST
/
api
/
asos
/
products
/
reviews
/asos/products/reviews
curl --request POST \
  --url https://api.anysite.io/api/asos/products/reviews \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "product": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@asos_product_review",
    "rating": 123,
    "title": "<string>",
    "text": "<string>",
    "author": "<string>",
    "submitted_at": "<string>",
    "is_verified_purchaser": true,
    "is_recommended": true,
    "secondary_ratings": [],
    "photos": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
product
string
required

ASOS product ID or a product URL containing it

Minimum string length: 1
Examples:

"206776454"

"https://www.asos.com/prd/206776454"

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

Response

Successful Response

id
string
required
@type
string
default:@asos_product_review
rating
integer | null
title
string | null
text
string | null
author
string | null
submitted_at
string | null
is_verified_purchaser
boolean | null
secondary_ratings
AsosProductReviewSecondaryRating · object[]
photos
string[]