Docs/Flipkart Product
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
| 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/path ID. Required unless url is supplied. |
| urls / product_urls / productUrls | array | Optional | Ordered batch of 1-50 product URLs. Mutually exclusive with singular inputs and pids. |
| pids / product_ids / productIds | array | Optional | Ordered batch of 1-50 product IDs. Mutually exclusive with singular inputs and urls. |
| timeout_ms | number | Optional | Provider deadline in milliseconds (3000-60000). |
Response fields
| Field | Type | Description |
|---|---|---|
| success | boolean | Whether product detail extraction completed. |
| product | object | Singular 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. |
| results | array | Batch-only ordered rows containing input, success, product, and an explicit per-item error when needed. |
| requested / succeeded / failed | number | Batch-only completion counts. |
| time_taken | number | API 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
}
]
}
}