Docs / API reference

POST/v1/data/flipkart/product

Flipkart Product

Fetch one Flipkart product detail or an ordered batch of up to 50 URLs/PIDs. Returns normalized source data with price, MRP, brand, seller, media, variants, specifications, ratings, inline review previews, and warranty data.

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/path ID. Required unless url is supplied.
urls / product_urls / productUrlsarrayOptionalOrdered batch of 1-50 product URLs. Mutually exclusive with singular inputs and pids.
pids / product_ids / productIdsarrayOptionalOrdered batch of 1-50 product IDs. Mutually exclusive with singular inputs and urls.
timeout_msnumberOptionalProvider deadline in milliseconds (3000-60000).

Response fields

FieldTypeDescription
successbooleanWhether product detail extraction completed.
productobjectSingular detail with pid, listing_id, sku, title, URL, brand, price/MRP, seller, highlights, images, videos, variants, ratings_count, reviews_count, specifications, review previews, and warranty.
resultsarrayBatch-only ordered rows containing input, success, product, and an explicit per-item error when needed.
requested / succeeded / failednumberBatch-only completion counts.
time_takennumberAPI response time in seconds.

Request and response

curl -X POST "https://api.datablue.dev/v1/data/flipkart/product" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "pid": "MONH7GHGBNZXPWHQ"
}'
Example response
{
  "success": true,
  "source": "flipkart",
  "time_taken": 1.02,
  "product": {
    "pid": "MONH7GHGBNZXPWHQ",
    "title": "Example Smart Watch",
    "brand": "Example",
    "url": "https://www.flipkart.com/example/p/itm...",
    "price": "INR 1,499",
    "price_value": 1499,
    "mrp": "INR 4,999",
    "discount_percent": 70,
    "rating": 4.2,
    "ratings_count": 5821,
    "reviews_count": 640,
    "seller": {
      "name": "Example Retail",
      "rating": 4.6
    },
    "highlights": [
      "Bluetooth calling",
      "7 day battery"
    ],
    "videos": [
      {
        "video_id": "example-video",
        "provider": "YOUTUBE",
        "url": "https://www.youtube.com/watch?v=example-video"
      }
    ],
    "variants": [
      {
        "pid": "MONVARIANT1",
        "label": "Black",
        "availability": "InStock",
        "is_available": true
      }
    ]
  }
}