Discover/Nykaa API
live

Nykaa APInykaa.com

Retrieve L'Oreal Paris product listings and details from Nykaa.com including prices, ratings, variants, ingredients, and stock status via 2 endpoints.

Endpoint health
verified 2d ago
list_products
get_product_details
2/2 passing latest checkself-healing
Endpoints
2
Updated
26d ago

What is the Nykaa API?

The Nykaa L'Oreal Paris API provides 2 endpoints to retrieve product data from Nykaa's L'Oreal Paris brand page. The list_products endpoint returns up to 20 products per page with fields like MRP, discount percentage, rating, and image URL, while get_product_details delivers granular data including variants, SKU codes, tags, ingredients, usage instructions, and live stock availability for any individual product.

Try it
Page number for pagination. Each page returns up to 20 products.
Nykaa brand/category ID. 595 is L'Oreal Paris.
api.parse.bot/scraper/32e32b3b-bce2-4ebc-9fd3-cd6b95bcc9b5/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/32e32b3b-bce2-4ebc-9fd3-cd6b95bcc9b5/list_products?page=1&category_id=595' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace nykaa-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.nykaa_l_oreal_paris_products_api import Nykaa, ProductSummary, Product, ProductNotFound

nykaa = Nykaa()

# Browse L'Oreal Paris product listings
for product_summary in nykaa.productsummaries.list(category_id="595", limit=5):
    print(product_summary.name, product_summary.mrp, product_summary.rating)

# Get full details for the first product
first = nykaa.productsummaries.list(category_id="595", limit=1)
for item in first:
    detail = item.details()
    print(detail.name, detail.offer_price, detail.discount)
    print(detail.description)
    print(detail.primary_categories.l3.name)
    for variant in detail.variants:
        print(variant.variant_name, variant.offer_price, variant.in_stock)
All endpoints · 2 totalmissing one? ·

List L'Oreal Paris products from Nykaa with pagination. Returns up to 20 products per page with basic metadata including name, price, discount, rating, and category information. Products are ordered by Nykaa's default relevance ranking for the brand page.

Input
ParamTypeDescription
pageintegerPage number for pagination. Each page returns up to 20 products.
category_idstringNykaa brand/category ID. 595 is L'Oreal Paris.
Response
{
  "type": "object",
  "fields": {
    "page": "integer current page number",
    "per_page": "integer number of products returned on this page",
    "products": "array of product summary objects with id, name, brand_name, product_title, slug, image_url, mrp, price, discount, rating, rating_count, in_stock, variant_count, variant_type, primary_categories, tags",
    "total_found": "integer total number of products available"
  },
  "sample": {
    "data": {
      "page": 1,
      "per_page": 20,
      "products": [
        {
          "id": "26636069",
          "mrp": 949,
          "name": "L'Oreal Paris Hyaluron Tint Lip Stain Serum Weightless Color",
          "slug": "l-oreal-paris-hyaluron-tint-lip-stain-serum-weightless-color/p/26636069",
          "tags": [
            "FEATURED",
            "NEW"
          ],
          "price": 902,
          "rating": 4.3,
          "discount": 5,
          "in_stock": true,
          "image_url": "https://images-static.nykaa.com/media/catalog/product/tr:h-200,w-200,cm-pad_resize/c/b/cb487d26902395980254_1.jpg",
          "brand_name": "L'Oreal Paris",
          "rating_count": 267,
          "variant_type": "shade",
          "product_title": "Hyaluron Tint Lip Stain Serum Weightless Color",
          "variant_count": 6,
          "primary_categories": {
            "l1": {
              "id": "12",
              "name": "Makeup"
            },
            "l2": {
              "id": "15",
              "name": "Lips"
            },
            "l3": {
              "id": "253",
              "name": "Lip Tint"
            }
          }
        }
      ],
      "total_found": 122
    },
    "status": "success"
  }
}

About the Nykaa API

Product Listings

The list_products endpoint accepts two optional parameters: page (integer) for pagination and category_id (string) to target a specific brand or category — 595 is L'Oreal Paris on Nykaa. Each response includes a products array of up to 20 items, each carrying id, name, brand_name, product_title, slug, image_url, mrp, price, discount, and rating fields, plus a total_found integer so you can compute total page count without a separate call. Products are returned in Nykaa's default relevance order for the brand page.

Product Details

The get_product_details endpoint accepts either a slug (e.g. l-oreal-paris-elseve-extraordinary-oil-serum/p/1133168) taken directly from list_products results, or a numeric product_id. The response extends the listing fields with sku, tags, in_stock boolean, and a variants array that carries per-variant pricing, stock status, and size or shade details — useful for products offered in multiple shades or pack sizes. It also includes full product description, usage instructions, ingredients, and manufacturer details not present in the listing response.

Coverage and Pagination

The API covers the L'Oreal Paris brand catalogue on Nykaa.com (category ID 595). Pagination is handled by the page parameter on list_products; dividing total_found by per_page gives the total number of pages. For bulk catalogue work, iterate pages until the returned products array is shorter than per_page or page * per_page exceeds total_found.

Reliability & maintenanceVerified

The Nykaa API is a managed, monitored endpoint for nykaa.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when nykaa.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official nykaa.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
2d ago
Latest check
2/2 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Track MRP and discounted price changes across L'Oreal Paris SKUs over time for price-monitoring dashboards.
  • Build a shade-finder tool using the variants array from get_product_details to surface available colour options and their individual stock status.
  • Aggregate rating and rating_c fields from list_products to rank L'Oreal Paris products by consumer sentiment.
  • Sync Nykaa product catalogue data — names, slugs, images, and prices — into an internal product database using paginated list_products calls.
  • Compare mrp versus price across variants to identify which pack sizes carry the highest discount percentage.
  • Extract ingredient lists and usage instructions from get_product_details to populate a cosmetic ingredient analysis tool.
  • Monitor in_stock boolean per variant to trigger restock alerts for high-demand L'Oreal Paris products.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 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 Nykaa offer an official public developer API?+
Nykaa does not publish a public developer API or developer portal for third-party access to its product catalogue data.
What does the `variants` field in `get_product_details` actually contain?+
The variants array contains one object per purchasable variant of a product. Each object includes its own pricing (MRP and selling price), stock availability, and descriptors for the size or shade — so a foundation available in 10 shades returns 10 variant objects, each independently queryable for stock and price.
Does the API return customer reviews or review text?+
Not currently. The API exposes aggregate rating and rating_c (rating count) fields but does not return individual review text or reviewer metadata. You can fork this API on Parse and revise it to add a reviews endpoint that returns per-review content.
Can I retrieve products from Nykaa brand categories other than L'Oreal Paris?+
The list_products endpoint accepts a category_id parameter, and 595 is the L'Oreal Paris brand ID. Other Nykaa brand IDs are not documented in the current API. You can fork it on Parse and revise the endpoint to support additional brand or category IDs from Nykaa's catalogue.
How fresh is the pricing and stock data returned by the API?+
Data reflects Nykaa's product pages at the time of the request. The API does not cache responses across calls, so a fresh call to get_product_details will return the current price, discount, and in_stock value shown on the Nykaa product page at that moment. High-frequency polling is subject to the rate limits shown on this page.
Page content last updated . Spec covers 2 endpoints from nykaa.com.
Related APIs in EcommerceSee all →
nykaafashion.com API
Search and browse Nykaa Fashion's product catalog to discover clothing, accessories, and beauty items across multiple categories. Get detailed product information including prices, descriptions, and availability to help you find exactly what you're looking for.
lookfantastic.com API
Browse Lookfantastic category pages to retrieve live product listings (price, ratings, reviews, and ingredients), and fetch detailed information for a specific product by SKU including reviews, directions, and images.
paulaschoice.com API
Search and explore Paula's Choice skincare products with detailed ingredient lists, allergen information, and skin type recommendations all in one place. Find best sellers, look up specific ingredient details, and discover products organized by category to build your perfect skincare routine.
sephora.com API
Search and browse Sephora's product catalog to find detailed information about beauty items, including specifications, customer reviews, Q&A discussions, pricing, and real-time availability. Filter products by category or brand, and access comprehensive brand listings to discover exactly what you're looking for.
natura.com.br API
Browse Natura's complete product catalog, search for items by category or keyword, and retrieve detailed product information including prices, descriptions, ingredients, and customer reviews. Supports category navigation, faceted filtering, and paginated search results.
ulta.com API
Search and browse Ulta Beauty's complete product catalog with real-time pricing and inventory information, then dive into detailed product specs including ingredients, usage instructions, and customer reviews. Find exactly what you're looking for across all beauty categories with comprehensive product data at your fingertips.
amiparis.com API
Browse Ami Paris products, collections, and search their catalog to find items by name or discover new arrivals and signature collections. Access detailed product information including variants, images, and pricing across all available collections.
net-a-porter.com API
net-a-porter.com API