myntra.com APImyntra.com ↗
Access Myntra product listings, prices, sizes, images, reviews, and category filters via a structured API. 14 endpoints covering search, browse, and product detail.
curl -X GET 'https://api.parse.bot/scraper/c245ebbf-19c8-47dc-818e-c0488a0a6038/search_products?page=1&query=nike+shoes' \ -H 'X-API-Key: $PARSE_API_KEY'
Search for products by keyword on Myntra. Returns paginated product listings with filters, sort options, and metadata.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number for pagination. |
| sort | string | Sort order. Accepted values: popularity, price_asc, price_desc, new, discount, Customer Rating. |
| queryrequired | string | Search keyword (e.g. 'tshirts', 'shoes', 'dresses'). |
| filters | string | Filter string in format 'key:value' (e.g. 'Color:Black', 'brand:Nike', 'price:200 TO 500'). |
{
"type": "object",
"fields": {
"results": "object containing products array, totalCount, hasNextPage, filters, sortOptions, and SEO metadata"
},
"sample": {
"data": {
"results": {
"products": [
{
"mrp": 3695,
"brand": "Nike",
"price": 2956,
"rating": 4.45,
"product": "Nike Men Revolution 7 Road Running Shoes",
"category": "Sports Shoes",
"productId": 25205842,
"primaryColour": "White"
}
],
"totalCount": 1138,
"hasNextPage": true,
"sortOptions": [
"new",
"price_desc",
"popularity"
]
}
},
"status": "success"
}
}About the myntra.com API
The Myntra API provides 14 endpoints for querying India's largest fashion e-commerce platform, returning structured product data including pricing, size availability, images, and customer reviews. The get_product_details endpoint alone surfaces over a dozen distinct fields — brand, MRP, discounted price, available sizes with seller data, rating distribution, and article attributes like fabric and fit — without requiring any session on Myntra.
Search and Category Browsing
The search_products endpoint accepts a query string and optional filters in key:value format (e.g. Color:Black, brand:Nike, price:200 TO 500) along with a sort parameter that accepts popularity, price_asc, price_desc, new, discount, or Customer Rating. Results include a products array, totalCount, hasNextPage, available filters, sortOptions, and SEO metadata. The get_category_listings endpoint works identically but takes a category_slug (e.g. men-tshirts, women-dresses) instead of a free-text query. Convenience endpoints filter_products_by_price, filter_products_by_brand, and filter_products_by_color each wrap category listings with a single focused parameter rather than requiring a manual filter string.
Product Detail and Specifications
get_product_details returns a full product object keyed by product_url or path. The response contains id, name, a brand object, a media object with image albums and videos, a price object with both MRP and discounted price, a sizes array with per-size measurements and seller data, a ratings object with averageRating, totalCount, ratingInfo, and reviewInfo, and an articleAttributes object covering fabric, fit, pattern, and similar attributes. For workflows that need only a subset, get_product_specifications returns a flat specifications key-value map, get_product_images returns an array of image objects with src, alt, and type at 720×540 resolution, and get_product_reviews returns the full ratings and top-reviews object in isolation.
Multi-Page and Filter Discovery
get_multi_page_listings accepts start_page and end_page parameters and returns a single products array with a total_scraped count, removing the need to manage pagination loops manually. get_category_filters returns the complete filter tree for any category slug: primaryFilters, secondaryFilters, rangeFilters, geoSpecificFilters, inlineFilters, and nestedFilters. This is useful for discovering valid filter values before calling search or listing endpoints.
Brand Pages and Homepage Layout
get_brand_page takes a brand name and returns the same structure as search_products, giving a quick way to enumerate a brand's catalog. get_homepage_banners requires no inputs and returns the full homepage layout tree including banners, containers, and carousels, along with pageName and countryCode fields. This endpoint is useful for tracking promotional campaigns and featured collections.
- Monitor Myntra price changes on specific products by polling
get_product_detailsfor MRP and discounted price fields. - Build a size-availability tracker using the
sizesarray returned byget_product_details, which includes per-size seller data. - Aggregate customer sentiment by extracting
averageRating, rating distribution, and top reviews viaget_product_reviews. - Populate a fashion comparison tool with structured specs using
get_product_specificationsacross multiple product URLs. - Catalog a brand's full Myntra assortment by paginating
get_brand_pageresults for brands like Nike, Puma, or H&M. - Discover active promotional content and seasonal campaigns by polling
get_homepage_bannersfor the homepage layout tree. - Build a category price-range filter UI by first calling
get_category_filtersto retrieve validrangeFiltersbefore querying listings.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does Myntra have an official public developer API?+
What does `get_category_filters` return, and how is it different from the filters in listing endpoints?+
get_category_listings include a filters field as part of the paginated result, but it reflects only the filters relevant to the current result set. get_category_filters is a dedicated call that returns the full filter taxonomy for a category slug — primaryFilters, secondaryFilters, rangeFilters, geoSpecificFilters, inlineFilters, and nestedFilters — without requiring a product query. Use it to discover all valid filter keys and values before constructing filter strings for other endpoints.Does the API return seller identity or third-party marketplace seller details?+
sizes array inside get_product_details includes seller data scoped to each size option, but there is no dedicated seller-profile endpoint covering seller ratings, seller names across products, or seller-level inventory. You can fork this API on Parse and revise it to add a seller-focused endpoint if your use case requires that data.How does pagination work for category and search listings?+
hasNextPage boolean and accept an integer page parameter. For automated multi-page collection, get_multi_page_listings accepts start_page and end_page and returns a single merged products array with a total_scraped count. Note that very large page ranges may time out depending on category size; it is safer to batch requests in smaller page windows.