Docs/Flipkart Reviews
Docs / API reference
POST/v1/data/flipkart/reviews
Flipkart Reviews
Fetch up to 50 full Flipkart product reviews through the source JSON endpoint, with native helpful, recent, lowest-rating, or highest-rating ordering and optional star filtering.
Execution model
Live request
Runtime depends on endpoint, target, pagination, rendering mode, and active plan limits.
Credit weight
Live catalog
Current weights are managed from the Data API Weights admin table and shown on pricing before use.
Parameters
| Name | Type | Requirement | Description |
|---|---|---|---|
| url / product_url / productUrl | string | Optional | Direct Flipkart product URL. Required unless pid is supplied. |
| pid / product_id / productId | string | Optional | Flipkart product ID. Required unless url is supplied. |
| limit / results_wanted / resultsWanted | number | Optional | Maximum reviews to return (1-50). |
| star_filter | array | Optional | Optional star values such as ["1", "2"]. |
| sort / sort_by / sortBy | string | Optional | helpful, recent, rating_low, or rating_high. |
| timeout_ms | number | Optional | Total provider deadline in milliseconds (3000-60000). |
Response fields
| Field | Type | Description |
|---|---|---|
| success | boolean | Whether matching source reviews were returned. |
| reviews | array | Source review rows with variant identity, rating, text, reviewer metadata, votes, and reviewer-uploaded images. |
| reviews[].product_pid | string | Product variant the review belongs to. This can differ from the requested pid because Flipkart pools variant-family reviews. |
| reviews[].location | string | Reviewer location when disclosed by Flipkart. |
| reviews[].images | array | Reviewer-uploaded image URLs. |
| pages_fetched | number | Number of Flipkart review pages fetched. |
| has_more | boolean | Whether Flipkart reports more review pages. |
| time_taken | number | API response time in seconds. |
Request and response
curl -X POST "https://api.datablue.dev/v1/data/flipkart/reviews" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"pid": "SMWHHFCXTQRFSFBP",
"limit": 20,
"star_filter": [
"4",
"5"
],
"sort": "rating_high"
}'Example response
{
"success": true,
"source": "flipkart",
"pid": "SMWHHFCXTQRFSFBP",
"limit": 20,
"sort": "rating_high",
"star_filter": [
"4",
"5"
],
"pages_fetched": 2,
"has_more": true,
"time_taken": 1.42,
"reviews": [
{
"position": 1,
"review_id": "example-review",
"product_pid": "SMWHHFCXTQRFSFBP",
"rating": 5,
"title": "Excellent product",
"comment": "Comfortable to use and works as expected.",
"reviewer": "Verified customer",
"location": "Bengaluru",
"certified_buyer": true,
"helpful_votes": 19,
"upvotes": 18,
"downvotes": 1,
"images": [
"https://rukminim2.flixcart.com/image/review-example.jpeg"
]
}
]
}