Skip to main content
POST
/
api
/
myntra
/
products
/
reviews
/myntra/products/reviews
curl --request POST \
  --url https://api.anysite.io/api/myntra/products/reviews \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "product": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@myntra_review",
    "user_name": "<string>",
    "text": "<string>",
    "rating": 123,
    "created_at": 123,
    "upvote_count": 123,
    "downvote_count": 123,
    "images": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
product
string
required

Myntra product (style) ID or a product page URL containing it

Minimum string length: 1
Examples:

"1364628"

"https://www.myntra.com/shirts/roadster/x/1364628/buy"

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:@myntra_review
user_name
string | null
text
string | null
rating
integer | null
created_at
integer | null
upvote_count
integer | null
downvote_count
integer | null
images
string[]