Discover/myntra.com API
live

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.

Endpoints
14
Updated
3mo ago
Try it
Page number for pagination.
Sort order. Accepted values: popularity, price_asc, price_desc, new, discount, Customer Ra
Search keyword (e.g. 'tshirts', 'shoes', 'dresses').
Filter string in format 'key:value' (e.g. 'Color:Black', 'brand:Nike', 'price:200 TO 500')
api.parse.bot/scraper/c245ebbf-19c8-47dc-818e-c0488a0a6038/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
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'
All endpoints · 14 totalclick to expand

Search for products by keyword on Myntra. Returns paginated product listings with filters, sort options, and metadata.

Input
ParamTypeDescription
pageintegerPage number for pagination.
sortstringSort order. Accepted values: popularity, price_asc, price_desc, new, discount, Customer Rating.
queryrequiredstringSearch keyword (e.g. 'tshirts', 'shoes', 'dresses').
filtersstringFilter string in format 'key:value' (e.g. 'Color:Black', 'brand:Nike', 'price:200 TO 500').
Response
{
  "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.

Common use cases
  • Monitor Myntra price changes on specific products by polling get_product_details for MRP and discounted price fields.
  • Build a size-availability tracker using the sizes array returned by get_product_details, which includes per-size seller data.
  • Aggregate customer sentiment by extracting averageRating, rating distribution, and top reviews via get_product_reviews.
  • Populate a fashion comparison tool with structured specs using get_product_specifications across multiple product URLs.
  • Catalog a brand's full Myntra assortment by paginating get_brand_page results for brands like Nike, Puma, or H&M.
  • Discover active promotional content and seasonal campaigns by polling get_homepage_banners for the homepage layout tree.
  • Build a category price-range filter UI by first calling get_category_filters to retrieve valid rangeFilters before querying listings.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 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.

Frequently asked questions
Does Myntra have an official public developer API?+
No. Myntra does not publish a public developer API or documented data access program for third-party use.
What does `get_category_filters` return, and how is it different from the filters in listing endpoints?+
Listing endpoints like 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?+
Not as a standalone field. The 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?+
All listing endpoints return a 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.
Does the API cover Myntra Studio, Live, or wish-list features?+
Not currently. The API covers product search, category listings, product details, reviews, images, specifications, brand pages, and homepage banners. Features like Myntra Studio editorial content, Live shopping sessions, or user wish-list data are not exposed. You can fork this API on Parse and revise it to add endpoints for those sections.
Page content last updated . Spec covers 14 endpoints from myntra.com.
Related APIs in EcommerceSee all →
mouser.com API
mouser.com API
bigbasket.com API
Browse and search BigBasket's online grocery catalog. Retrieve product details, pricing, stock availability, category trees, search suggestions, homepage promotions, and delivery coverage — all in one API.
woocommerce.com API
Browse and search thousands of WooCommerce extensions, themes, and business services from the official marketplace while accessing detailed product information, user reviews, and ratings. Integrate marketplace data, blog content, and documentation directly into your applications to help users discover and learn about WooCommerce solutions.
bilbasen.dk API
Search Denmark's largest car marketplace to find vehicles by make and model, then access detailed pricing and technical specifications including emissions, weight, MSRP, battery size, and equipment details. Get comprehensive car listings and full specs to compare vehicles on Bilbasen.dk.
leroymerlin.fr API
Search and browse Leroy Merlin France's complete product catalog to find items by category, view pricing, product details, and compare offerings from Leroy Merlin and their online partners. Access real-time product information including names, IDs, URLs, and seller details to help you discover and evaluate home improvement and DIY products.
lowes.com API
Search and browse products from Lowe's, including product listings by category, detailed product information, and pricing. Retrieve comprehensive details on specific items to compare options and make informed purchasing decisions.
vivino.com API
Search and discover wines across thousands of options while accessing detailed information like user reviews, pricing, winery profiles, and food pairing recommendations. Explore grape varieties, compare wines side-by-side, and find the perfect bottle based on ratings and availability.
lazada.co.th API
Search for products and browse categories on Lazada Thailand to find detailed information like prices, descriptions, and availability. Discover items by keyword or category to compare specifications and make informed purchasing decisions.