myntra_search
Scrape Myntra search results by providing any Myntra search URL. Retrieves product IDs, names, brands, prices, discounts, ratings, and images.
Instructions
Scrape Myntra search result pages by passing any Myntra search URL. Returns product IDs, names, brands, prices, discounts, ratings, and images. [Credits: 5 API credits per successful request] Notes: No dedicated query parameter — pass a full pre-built Myntra search URL (including rawQuery and any native Myntra filters) via url. Returns: { search_results: [ { productId, product, productName, brand, rating, ratingCount, mrp, price, discount, gender, primaryColour, category, sizes, landingPageUrl, searchImage, images: [ { view, src } ], inventoryInfo: [ { skuId, label, inventory, available } ], couponData: { couponDiscount, couponDescription: { couponCode, bestPrice } }, articleType: { typeName }, masterCategory: { typeName } } ] }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | URL of the Myntra search page to scrape (e.g., https://www.myntra.com/nike-shoes?rawQuery=nike%20shoes). | |
| html | No | Return the full HTML of the Myntra page instead of parsed JSON. (default: false) |