myntra_product
Scrape Myntra product pages by URL to extract product name, brand, pricing, sizes, images, ratings, seller details, and offers. Returns structured JSON data.
Instructions
Scrape any Myntra product page by URL to retrieve product name, brand, MRP, pricing, available sizes, color options, ratings, images, seller details, and available offers. [Credits: 5 API credits per successful request] Notes: Product identity is embedded in the url (the numeric ID path segment before /buy, e.g. 31076617). Returns: { product_results: { productId, name, brand, mrp, country_of_origin, material, fit, overall_rating, ratings_count, images: [], sizes: [ { label, mrp, discounted_price, discount_percent, available, seller, stock } ], offers: [ { type, description } ], product_details: [ { section, content } ], reviews: [ { rating, title, comment, reviewer, helpful_count } ] } }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | URL of the Myntra product page to scrape (e.g., https://www.myntra.com/jeans/powerlook/powerlook-men-baggy-fit-mildly-distressed-jeans/31076617/buy). | |
| html | No | Return the full HTML of the Myntra page instead of parsed JSON. (default: false) |