Skip to main content
POST
/
api
/
flipkart
/
products
/
reviews
/flipkart/products/reviews
curl --request POST \
  --url https://api.anysite.io/api/flipkart/products/reviews \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "product": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@flipkart_product_review",
    "rating": 123,
    "title": "<string>",
    "text": "<string>",
    "author": "<string>",
    "date": "<string>",
    "location": "<string>",
    "is_certified_buyer": true,
    "helpful_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

Flipkart product item id or a product URL containing it

Minimum string length: 1
Examples:

"itm6ac6485515ae4"

"https://www.flipkart.com/apple-iphone-15-black-128-gb/p/itm6ac6485515ae4?pid=MOBGTAGPTB3VS24W"

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:@flipkart_product_review
rating
integer | null
title
string | null
text
string | null
author
string | null
date
string | null
location
string | null
is_certified_buyer
boolean | null
helpful_count
integer | null
downvote_count
integer | null
images
string[]