Discover/Net-a-Porter API
live

Net-a-Porter APInet-a-porter.com

Access Net-a-Porter product details, category listings, search results, designer rankings, and filter facets via a structured JSON API.

Endpoint health
verified 5d ago
get_product_details
is_product_page
get_product_listing
get_designers_ranked
search_products
6/6 passing latest checkself-healing
Endpoints
6
Updated
22d ago

What is the Net-a-Porter API?

The Net-a-Porter API provides 6 endpoints covering product data, category listings, keyword search, designer rankings, and filter facets from net-a-porter.com. The get_product_details endpoint returns 10 fields per product including brand, current price, HTML and plain-text descriptions, image URLs, and stock availability. Companion endpoints handle paginated category browsing, facet retrieval, and a ranked list of designers by product count.

Try it
Full Net-a-Porter product detail page URL (e.g. https://www.net-a-porter.com/en-us/shop/product/versace/clothing/mini-dresses/strapless-printed-twill-trimmed-silk-crepe-mini-dress/46376663163095572)
api.parse.bot/scraper/a84ac9c7-1f65-415e-8254-aaf8c8ff65fe/<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/a84ac9c7-1f65-415e-8254-aaf8c8ff65fe/get_product_details?url=https%3A%2F%2Fwww.net-a-porter.com%2Fen-us%2Fshop%2Fproduct%2Fversace%2Fclothing%2Fmini-dresses%2Fstrapless-printed-twill-trimmed-silk-crepe-mini-dress%2F46376663163095572' \
  -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 net-a-porter-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.

"""Walkthrough: Net-a-Porter SDK — browse, search, check URLs, and drill into product details."""
from parse_apis.net_a_porter_api import NetAPorter, Product, ProductSummary, Designer, UrlCheck, NotFoundError

client = NetAPorter()

# Search for products by keyword, capped at 3 results
for item in client.catalogs.search(query="silk dress", limit=3):
    print(item.title, item.designer, item.current_price, item.in_stock)

# Drill into full product details from a search result
item = client.catalogs.search(query="leather jacket", limit=1).first()
if item:
    product = item.details()
    print(product.name, product.brand, product.current_price, product.description_plain[:100])

# Browse a category listing with pagination
for item in client.catalogs.list(url="https://www.net-a-porter.com/en-us/shop/clothing", limit=5):
    print(item.product_id, item.title, item.designer, item.current_price)

# Check if a URL is a product page
check = client.catalogs.is_product_page(url="https://www.net-a-porter.com/en-us/shop/product/versace/clothing/mini-dresses/example/12345")
print(check.is_product_page)

# Get ranked designers
for designer in client.catalogs.designers(limit=5):
    print(designer.name, designer.slug, designer.count)

# Typed error handling
try:
    bad = client.catalogs.list(url="https://www.net-a-porter.com/en-us/shop/product/nonexistent/0000", limit=1).first()
except NotFoundError as exc:
    print(f"not found: {exc}")

print("exercised: catalogs.search / details / catalogs.list / is_product_page / catalogs.designers")
All endpoints · 6 totalmissing one? ·

Extract detailed product information from a Net-a-Porter product detail page URL. Returns product name, brand, price, description, images, and availability. Requires a full product page URL containing '/shop/product/' and a numeric product ID.

Input
ParamTypeDescription
urlrequiredstringFull Net-a-Porter product detail page URL (e.g. https://www.net-a-porter.com/en-us/shop/product/versace/clothing/mini-dresses/strapless-printed-twill-trimmed-silk-crepe-mini-dress/46376663163095572)
Response
{
  "type": "object",
  "fields": {
    "url": "string, product page URL",
    "name": "string, product name",
    "brand": "string, designer/brand name",
    "images": "array of strings, product image URLs",
    "category": "string, product category",
    "in_stock": "boolean, whether product is available for purchase",
    "product_id": "string, product part number",
    "current_price": "string, formatted current selling price",
    "description_html": "string, HTML description",
    "description_plain": "string, plain text description"
  },
  "sample": {
    "data": {
      "url": "https://www.net-a-porter.com/en-us/shop/product/versace/clothing/mini-dresses/strapless-printed-twill-trimmed-silk-crepe-mini-dress/46376663163095572",
      "name": "Strapless printed twill-trimmed silk-crepe mini dress",
      "brand": "VERSACE",
      "images": [
        "https://www.net-a-porter.com/variants/images/46376663163095571P/in/w2000_q60.jpg",
        "https://www.net-a-porter.com/variants/images/46376663163095571P/fr/w2000_q60.jpg"
      ],
      "category": "",
      "in_stock": true,
      "product_id": "46376663163095571P",
      "current_price": "$4220.00",
      "description_html": "Versace's mini dress is designed with a strapless neckline elevated by a silk-twill scarf detail printed with the house's 'Hangin' Out' motif.",
      "description_plain": "Versace's mini dress is designed with a strapless neckline elevated by a silk-twill scarf detail printed with the house's 'Hangin' Out' motif."
    },
    "status": "success"
  }
}

About the Net-a-Porter API

Product Detail and Listing Data

The get_product_details endpoint accepts a full Net-a-Porter product page URL and returns structured data: product_id, name, brand, category, current_price, in_stock, images (array of URLs), description_html, and description_plain. This covers a single product at a time. For browsing by category, get_product_listing accepts a category page URL and an optional page integer for pagination, returning an array of objects with product_id, title, designer, current_price, url, image_url, and in_stock, plus a total_count of all products in the category.

Search and Discovery

The search_products endpoint takes a query string (e.g. 'silk dress' or 'leather jacket') and returns a total result count plus an array of matching products with product_id, title, designer, price, url, and in_stock. The get_designers_ranked endpoint requires no inputs and returns every designer brand available on Net-a-Porter sorted by product count descending, with each entry exposing name, slug, and count.

Filters and URL Utilities

get_category_filters accepts a category page URL and returns all available filter groups for that page — each with a name, type, and an options array where every option carries a label, value, and product count. This is useful for building faceted browsing UIs or understanding what refinements Net-a-Porter exposes for a given category. The lightweight is_product_page endpoint checks whether a URL matches the Net-a-Porter product detail page pattern without making a network request, returning a single is_product_page boolean.

Reliability & maintenanceVerified

The Net-a-Porter API is a managed, monitored endpoint for net-a-porter.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when net-a-porter.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 net-a-porter.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
5d ago
Latest check
6/6 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 price changes on specific Net-a-Porter products using current_price from get_product_details.
  • Build a cross-site luxury fashion comparison tool by pulling brand, category, and current_price from product listings.
  • Populate a designer directory with ranked brand data from get_designers_ranked including product counts.
  • Implement faceted category browsing in a fashion aggregator using filter options from get_category_filters.
  • Monitor stock availability across a watchlist of product URLs via the in_stock field in get_product_details.
  • Feed a product search feature with keyword results from search_products, filtering by designer and in_stock.
  • Validate a batch of URLs before fetching full product data using the no-cost is_product_page check.
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 Net-a-Porter have an official public developer API?+
Net-a-Porter does not publish a public developer API or documentation for third-party programmatic access to its product catalog.
What does `get_product_listing` return and how does pagination work?+
get_product_listing accepts a category URL and an optional page integer. Each response includes the page number, a products array with per-item fields (product_id, title, designer, current_price, url, image_url, in_stock), and a total_count reflecting the full size of the category. Increment the page parameter to retrieve subsequent pages.
Does the API return customer reviews or ratings for products?+
Not currently. The API covers product details, pricing, descriptions, images, and stock status, but does not expose customer reviews or ratings. You can fork this API on Parse and revise it to add an endpoint targeting review data.
Does `get_product_details` return size availability or variant-level stock?+
The endpoint returns a single in_stock boolean for the product as a whole; it does not break down availability by individual size or variant. The API covers product-level stock status, pricing, and description. You can fork this API on Parse and revise it to add size-level variant data.
Are results from `search_products` filterable by category or price range within the endpoint?+
The search_products endpoint accepts only a query string and returns a flat list of matching products with product_id, title, designer, price, url, and in_stock. Client-side filtering on the returned array is currently the only option. You can fork this API on Parse and revise the endpoint to add filter parameters such as category or price range.
Page content last updated . Spec covers 6 endpoints from net-a-porter.com.
Related APIs in EcommerceSee all →
yoox.com API
Search and browse YOOX's fashion catalog to discover products by category, designer, new arrivals, and sale items. Get detailed product information to find exactly what you're looking for across the YOOX marketplace.
ssense.com API
Browse luxury fashion products and designers on SSENSE. Retrieve detailed product information including pricing, composition, sizing, and model measurements, and check real-time inventory availability across the full catalog.
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.
netshoes.com API
Search and browse products on Netshoes.com.br by keyword or category. Retrieve detailed product information including specifications, pricing, available sizes and colors, customer reviews, and delivery estimates by ZIP code.
notonthehighstreet.com API
Search and browse unique products from Not On The High Street, viewing detailed product information, customer reviews, seller profiles, and similar items all in one place. Discover curated gift and home goods with real-time access to pricing, availability, and seller details to help you find the perfect independent retailers.
stylishop.com API
Browse and search stylishop.com's complete fashion catalog, including products, categories, brands, reviews, and trending data to discover new arrivals and sale items. Get product details, size guides, autocomplete suggestions, and trending search insights to enhance your shopping experience.
zalando.it API
Browse and extract product data from Zalando Italy, including search results, category listings, and full product detail pages.
asos.com API
Search and browse ASOS's fashion catalog to discover products across women's and men's categories, view real-time pricing and stock information, and find trending or sale items. Get detailed product information, explore similar items, and discover new arrivals and brands all in one place.