Discover/Lyst.com API
live

Lyst.com APILyst.com

Search Lyst fashion products by brand, price, size, and gender. Retrieve product details including sizing, sale prices, retailer info, and images via 2 endpoints.

Endpoint health
verified 1h ago
search_products
get_product
2/2 passing latest checkself-healing
Endpoints
2
Updated
2h ago
Try it
Page number for pagination, starting at 1.
Size filter (e.g. '17', 'XL', '15.5'). Format varies by product category.
Sort order for results.
Free-text search query for products (e.g. 'Alexander McQueen shirt', 'Dries Van Noten jacket').
Filter by gender.
Maximum price filter in GBP (e.g. '250' for items up to £250).
Minimum price filter in GBP (e.g. '50' for items from £50).
Filter by designer/brand slug (e.g. 'mcqueen-designer', 'maison-margiela', 'dries-van-noten'). Obtain slugs from search results or auto_suggest.
api.parse.bot/scraper/3d602332-e39a-4e7b-b94e-69a16d27905c/<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/3d602332-e39a-4e7b-b94e-69a16d27905c/search_products?page=1&size=L&sort=price_low_to_high&query=Alexander+McQueen+shirt&gender=men&max_price=500&min_price=10&designer_slug=mcqueen-designer' \
  -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 lyst-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: Lyst fashion search — find designer shirts, filter by price, inspect details."""
from parse_apis.lyst_com_api import Lyst, Gender, Sort, ProductNotFound

client = Lyst()

# Search for McQueen shirts under £250 for men, sorted by price
for product in client.products.search(
    query="Alexander McQueen shirt",
    gender=Gender.MEN,
    max_price="250",
    sort=Sort.PRICE_LOW_TO_HIGH,
    limit=5,
):
    print(product.name, product.full_price, product.designer_name)

# Drill into the first result for full details (sizes, description, images)
product = client.products.search(
    query="Dries Van Noten shirt",
    gender=Gender.MEN,
    limit=1,
).first()

if product:
    detail = product.details()
    print(detail.name, detail.full_price, detail.color)
    for size in detail.available_sizes:
        print(f"  Size {size.display_size} — in stock: {size.in_stock}")

# Typed error handling: catch a not-found when drilling into a product
try:
    stale = client.products.search(query="rare vintage item", limit=1).first()
    if stale:
        info = stale.details()
        print(info.description)
except ProductNotFound as exc:
    print(f"Product gone: {exc.product_path}")

print("exercised: products.search / product.details / ProductNotFound catch")
All endpoints · 2 totalmissing one? ·

Search for fashion products on Lyst with optional filters for price range, gender, brand, size, and sorting. Returns paginated results with product cards including pricing, designer, retailer, and availability information. Results are auto-iterated across pages. Prices are in GBP (British Pounds).

Input
ParamTypeDescription
pageintegerPage number for pagination, starting at 1.
sizestringSize filter (e.g. '17', 'XL', '15.5'). Format varies by product category.
sortstringSort order for results.
queryrequiredstringFree-text search query for products (e.g. 'Alexander McQueen shirt', 'Dries Van Noten jacket').
genderstringFilter by gender.
max_pricestringMaximum price filter in GBP (e.g. '250' for items up to £250).
min_pricestringMinimum price filter in GBP (e.g. '50' for items from £50).
designer_slugstringFilter by designer/brand slug (e.g. 'mcqueen-designer', 'maison-margiela', 'dries-van-noten'). Obtain slugs from search results or auto_suggest.
Response
{
  "type": "object",
  "fields": {
    "products": "array of product cards with id, name, designer, pricing, and availability",
    "total_pages": "integer",
    "current_page": "integer",
    "total_results": "integer"
  },
  "sample": {
    "data": {
      "products": [
        {
          "id": 1210373726,
          "uid": "UJMAYBH",
          "url": "/clothing/mcqueen-logo-tape-shirt-1/",
          "name": "Logo Tape Shirt - Black",
          "slug": "mcqueen-logo-tape-shirt-1",
          "currency": "GBP",
          "in_stock": true,
          "image_url": "https://cdna.lystit.com/300/375/tr/photos/ruelala/bcc51a5e/864x1080/mcqueen-designer-Black-Logo-Tape-Shirt.jpeg",
          "date_added": "2026-05-30T14:34:30.953081",
          "full_price": "£445",
          "sale_price": "£170",
          "designer_name": "McQueen",
          "designer_slug": "mcqueen-designer",
          "discount_info": "(62% off)",
          "retailer_name": "Gilt"
        }
      ],
      "total_pages": 90,
      "current_page": 1,
      "total_results": 6967
    },
    "status": "success"
  }
}

About the Lyst.com API

The Lyst API provides 2 endpoints for querying fashion products listed on Lyst.com, covering search with filters and full product detail retrieval. The search_products endpoint returns paginated product cards across brands, price ranges, and sizes, while get_product delivers per-item detail including available sizes with stock status, sale pricing, descriptions, and multi-resolution images — all priced in GBP.

Search and Filter Fashion Products

The search_products endpoint accepts a required query string and optional filters including min_price, max_price (both in GBP), gender, size, and designer_slug. Results are paginated, and the response includes total_pages, current_page, and total_results alongside an array of product cards. Each card exposes the product id, name, designer, pricing fields, and availability. The designer_slug filter accepts slugs like maison-margiela or dries-van-noten, which you can obtain from search results themselves.

Product Detail Retrieval

Once you have a product path from search results, pass it to get_product via the product_path parameter (for example, /clothing/alexander-mcqueen-shirt-1872/). The response includes full_price, sale_price (or null if not on sale), color, currency, description, canonical_url, and an images array with multiple resolution variants. The available sizes and their stock status are also returned, giving you a clear picture of what is purchasable at any given moment.

Pagination and Sorting

Search results support page and sort parameters for navigating large result sets. The API auto-iterates across pages, and the total_results field lets you estimate how many pages to traverse. Because prices are in GBP, this API is best suited for use cases targeting UK or GBP-denominated pricing data from Lyst's catalogue.

Reliability & maintenanceVerified

The Lyst.com API is a managed, monitored endpoint for Lyst.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when Lyst.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 Lyst.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
1h 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
  • Build a fashion price-tracking tool that monitors sale_price drops for specific designer slugs over time.
  • Aggregate cross-brand size availability by querying search_products with a size filter and checking stock status in get_product.
  • Power a gender-filtered fashion discovery feed using the gender and query parameters in search_products.
  • Compare full_price vs sale_price across designer brands to identify discount patterns on Lyst.
  • Extract high-resolution product imagery via the images array in get_product for editorial or lookbook use.
  • Filter luxury fashion results by price band using min_price and max_price to surface mid-range or premium items.
  • Map designer catalogue breadth by iterating search_products with a designer_slug and reading total_results.
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 Lyst have an official developer API?+
Lyst does not offer a publicly documented developer API for product search or catalogue data. Their platform is consumer-facing, with no published API keys or developer portal available to third parties.
What does `get_product` return beyond basic pricing?+
In addition to full_price and sale_price, the get_product response includes color, description, currency, a canonical_url, and an images array with multiple resolution URLs. It also returns available sizes and their individual stock status, which search result cards do not include.
Are prices available in currencies other than GBP?+
Currently, all prices are returned in GBP. The API reflects Lyst.co.uk pricing, and no currency conversion or multi-currency response is exposed. You can fork this API on Parse and revise it to target a different Lyst regional domain if you need pricing in another currency.
Does the API return retailer names or links for where to buy a product?+
The search_products endpoint includes retailer information in product cards. The get_product endpoint does not currently expose a structured list of retailer checkout URLs. You can fork this API on Parse and revise it to add a retailer-links endpoint if per-retailer redirect data is needed.
How does the `designer_slug` filter work, and where do I get valid slugs?+
The designer_slug parameter accepts URL-style slugs such as maison-margiela or dries-van-noten. Valid slugs appear in product card data returned by search_products, so running an initial broad query and reading the designer fields is the most reliable way to collect them before applying the filter.
Page content last updated . Spec covers 2 endpoints from Lyst.com.
Related APIs in EcommerceSee all →
walmart.com API
Retrieve product data from Walmart.com including pricing, descriptions, availability, reviews, and category listings. Access real-time product information to search by keyword, look up items by ID or URL, and browse department categories.
homedepot.com API
Search and browse Home Depot's product catalog to compare pricing, check real-time availability, and review detailed product specifications. Find products across all categories, look up store locations and hours, and check fulfillment options including in-store pickup and delivery.
amazon.co.uk API
Access data from amazon.co.uk.
ikea.com API
Search and browse IKEA's full product catalog to find items by category, compare measurements, read customer reviews, and check real-time store availability and current deals. Discover new arrivals and best-selling products to help you shop smarter and find exactly what you need.
newegg.com API
Search Newegg's product catalog and retrieve listings, specifications, customer reviews, Q&A, category trees, and daily deals.
amazon.fr API
Scrape product data from Amazon.fr, including search results, product details, specifications, seller offers, customer reviews, and current deals.
idealo.de API
Search for products on Idealo.de and retrieve detailed information including current seller offers, price history, technical specifications, and user and expert reviews. Compare prices across sellers and access comprehensive product data to evaluate deals.
zara.com API
Shop Zara's entire catalog by browsing categories, searching for specific items, and viewing detailed product information including measurements and related products. Find nearby store locations, check real-time inventory availability, and get shipping details all in one place.