Myntra product page
Product detail page (PDP) for a Myntra style.
Provide either the full product url (the /…/<styleId>/buy form) or the
numeric product_id on its own, Myntra keys the route on the id and ignores
the slug text.
Returns name, brand, mrp, country of origin, material/fit, overall rating + count, images, per-size pricing & stock, offers, the product-detail sections, and the top reviews. Null fields are omitted. A removed or invalid style id is a clean 404.
The example response below is real output from this endpoint, not an illustration. Long lists and long strings are shortened to keep the page readable, and each place that happens is marked. This example took 4.0s.
Authorization
ApiKeyAuth Your API key. Sent on every request.
In: header
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
application/json
application/json
application/json
curl -X POST "https://example.com/v1/scrapers/myntra-pdp-v4" \ -H "Content-Type: application/json" \ -d '{ "product_id": "38658524" }'{ "request_id": "req_8f2c1d94e7b0", "success": true, "status": { "code": "OK", "message": "Scrape completed.", "retryable": false }, "data": { "product_results": { "brand": "Hexacraft", "country_of_origin": "India", "fit": "Oversized", "images": [ "http://assets.myntassets.com/assets/images/2026/FEBRUARY/24/UvlKT9Wz_70d247126ed04205b95d7fcd0f809c17.jpg", "http://assets.myntassets.com/assets/images/2026/FEBRUARY/24/S3BmIQoS_7e9924b1b02b483b81ccf2735504c9ef.jpg", "… 5 more items in the full response" ], "material": "Cotton", "mrp": 999, "name": "Hexacraft Men Printed Drop-Shoulder Sleeves T-shirt", "offers": [ { "description": "10% Instant Discount on BOBCARD Credit Card — Min Spend ₹3,500 Max Discount ₹1,000", "type": "BANK" }, { "description": "10% Instant Discount on BOBCARD Credit Card EMI — Min Spend ₹3,500 Max Discount ₹1,200", "type": "BANK" }, "… 4 more items in the full response" ], "overall_rating": 3.9782608695652173, "productId": 38658524, "product_details": [ { "content": "Black Tshirt for men Black panther graphic printed Regular length Round neck Short, drop-shoulder sleeves Cotton fabric", "section": "Product Details" }, { "content": "Gentle Wash", "section": "MATERIAL & CARE" }, "… 1 more item in the full response" ], "ratings_count": 368, "reviews": [ { "comment": "The design and the quality of the product is eye-catchy and real comfortable respectively. The neckline and the sleeve are at the exact fit and the texture of the tshirt makes me feel good more than ever. Loved buying this tee and became a fan of Myntra and the brands being a first time user", "helpful_count": 0, "rating": 5, "reviewer": "Hari" }, { "comment": "Amazing tshirt 😍🤩🤩🤩🤩 i m very happy for this product everything looks good 💯😊😊 thanks myntra", "helpful_count": 0, "rating": 5, "reviewer": "Myntra Customer" }, "… 1 more item in the full response" ], "sizes": [ { "available": true, "discount_percent": 54, "discounted_price": 458, "label": "M", "mrp": 999, "seller": "HEXACRAFT" }, { "available": true, "discount_percent": 54, "discounted_price": 458, "label": "L", "mrp": 999, "seller": "HEXACRAFT" }, "… 2 more items in the full response" ] } }, "error": null, "meta": { "client_id": "client_abc123", "scraper": "myntra-pdp-v4", "billable": true, "duration_ms": 3504 }}