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

NameTypeRequirementDescription
url / product_url / productUrlstringOptionalDirect Flipkart product URL. Required unless pid is supplied.
pid / product_id / productIdstringOptionalFlipkart product ID. Required unless url is supplied.
limit / results_wanted / resultsWantednumberOptionalMaximum reviews to return (1-50).
star_filterarrayOptionalOptional star values such as ["1", "2"].
sort / sort_by / sortBystringOptionalhelpful, recent, rating_low, or rating_high.
timeout_msnumberOptionalTotal provider deadline in milliseconds (3000-60000).

Response fields

FieldTypeDescription
successbooleanWhether matching source reviews were returned.
reviewsarraySource review rows with variant identity, rating, text, reviewer metadata, votes, and reviewer-uploaded images.
reviews[].product_pidstringProduct variant the review belongs to. This can differ from the requested pid because Flipkart pools variant-family reviews.
reviews[].locationstringReviewer location when disclosed by Flipkart.
reviews[].imagesarrayReviewer-uploaded image URLs.
pages_fetchednumberNumber of Flipkart review pages fetched.
has_morebooleanWhether Flipkart reports more review pages.
time_takennumberAPI 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"
      ]
    }
  ]
}