Discover/Stylishop API
live

Stylishop APIstylishop.com

Access Styli fashion catalog via API: products, categories, brands, reviews, size guides, search autocomplete, and trending data from stylishop.com.

Endpoint health
verified 3d ago
get_trending_searches
get_product_reviews
list_categories
get_homepage
list_products
13/13 passing latest checkself-healing
Endpoints
13
Updated
18d ago

What is the Stylishop API?

The Styli API covers 13 endpoints for browsing and querying the stylishop.com fashion catalog, including product listings, brand directories, customer reviews, and size guides. With get_product_details you can retrieve SKU-level data such as images, pricing, and attributes, while list_products supports pagination and sorting by popularity, price, or recency across any category context.

Try it
Language code. Accepted values: 'en', 'ar'.
api.parse.bot/scraper/93481231-d9bf-4e48-a677-d31e21ee3cb0/<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/93481231-d9bf-4e48-a677-d31e21ee3cb0/get_homepage?lang=en' \
  -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 stylishop-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.

"""
Styli Fashion API - SDK Usage Example

Get your API key from: https://parse.bot/settings
"""

from parse_apis.styli_fashion_api import Styli, Language, Sort, ProductNotFound

# Initialize the client
styli = Styli(api_key="YOUR_API_KEY")

# Browse new arrivals
for product in styli.products.new_arrivals(limit=5):
    print(product.name, product.brand, product.sku)

# Search for dresses sorted by price
for product in styli.products.by_context(context_slug="spring-edit-w", sort_by=Sort.PRICE_ASC, limit=3):
    print(product.name, product.brand)

# Search products by keyword
for product in styli.products.search(query="dress", limit=3):
    print(product.name, product.sku, product.brand)

# Get product details by SKU
details = styli.products.get(sku="7026898024")
print(details.name, details.brand, details.sku)

# Get reviews for a product
review = details.reviews.get()
print(review.total_ratings, review.avg_ratings)

# Get size guide for a product
guide = details.size_guide.get()
print(guide.scale_en)

# List brands and browse one brand's products
for brand in styli.brands.list(limit=5):
    print(brand.name, brand.count)

# Browse products from a specific brand
for product in styli.brand("Styli").products(limit=3):
    print(product.name, product.sku)

# Get sale products
for product in styli.products.on_sale(limit=3):
    print(product.name, product.discount_percentage)

# Browse categories in Arabic
for cat in styli.categories.list(lang=Language.AR, limit=3):
    print(cat.title, cat.id)

# Get autocomplete suggestions
for suggestion in styli.suggestions.autocomplete(query="dress"):
    print(suggestion.suggestion, suggestion.parent_category)

# Get trending searches by country
for trend in styli.trendingsearches.list():
    print(trend.country, trend.en)

# Browse homepage sections
for section in styli.homepagesections.list(lang=Language.EN):
    print(section.title, section.id)
All endpoints · 13 totalmissing one? ·

Get homepage content including banners, promotions, and featured sections. Returns sections for Women, Men, and Kids with banner carousels, product grids, and promotional widgets.

Input
ParamTypeDescription
langstringLanguage code. Accepted values: 'en', 'ar'.
Response
{
  "type": "object",
  "fields": {
    "items": "array of homepage section objects with id, title, pageUniqueId, and rows"
  },
  "sample": {
    "data": {
      "items": [
        {
          "id": 1,
          "rows": [
            {
              "id": 71870,
              "name": "EN-KSA-Delivery-Strip-Common",
              "rowType": "BannerCarousel"
            }
          ],
          "title": "WOMEN",
          "pageUniqueId": "en_list_women"
        }
      ]
    },
    "status": "success"
  }
}

About the Stylishop API

Product and Category Data

list_products accepts a required context_slug parameter (e.g. 'new-arrivals-w') and optional page, page_size, and sort_by inputs. The sort_by field accepts 'popularity', 'price_asc', 'price_desc', and 'new_arrivals'. The response object includes a products array, filters, totalCount, and pagination info. get_product_details returns per-SKU data: name, brand, images (with media gallery URLs), and a prices object containing both price and specialPrice for sale detection. list_categories returns the full navigation tree as tabs with nested category IDs and titles, available in English or Arabic via the lang parameter.

Search and Discovery

search_products accepts a query string and optional page and page_size inputs, returning the same paginated response shape as list_products. get_autocomplete takes a query prefix and returns an array of suggestion objects, each with a suggestion, flow, and parent_category — useful for building typeahead UIs. get_trending_searches requires no inputs and returns an array of current trending search term objects reflecting real-time popularity on the site.

Brands, Sales, and Reviews

list_brands returns a total count alongside a brands array where each object carries a brand name and product count. get_brand_products accepts a brand_name plus pagination parameters to retrieve that brand's full paginated product listing. get_sale_products and get_new_arrivals both follow the same paginated response structure. get_product_reviews takes a sku and returns a response object with totalRatings, avgRatings, fitDetails, and fitInsights — structured fit feedback rather than free-text reviews.

Size Guides and Homepage

get_size_guide accepts a product sku and returns a response object containing a size chart with sizes, scale, and preview images. This is resolved per-product, so chart data reflects the product's brand and category. get_homepage returns structured page content including rows (section arrays with banners and featured segments) and a pageUniqueId, also supporting the lang parameter for Arabic or English responses.

Reliability & maintenanceVerified

The Stylishop API is a managed, monitored endpoint for stylishop.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when stylishop.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 stylishop.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
3d ago
Latest check
13/13 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 price-comparison tool using get_product_details to track price and specialPrice across SKUs over time.
  • Populate a fashion search interface using search_products and get_autocomplete for live query suggestions.
  • Generate brand-level product catalogs by combining list_brands counts with get_brand_products pagination.
  • Monitor new inventory by polling get_new_arrivals and diffing totalCount against previous snapshots.
  • Display sale alerts by filtering get_sale_products results where specialPrice is below a target threshold.
  • Integrate fit guidance into a shopping app using get_size_guide for SKU-specific size chart data.
  • Analyze trending queries and autocomplete flows from get_trending_searches and get_autocomplete to study on-site search behavior.
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 Styli (stylishop.com) offer an official developer API?+
Styli does not publish a documented public developer API. There is no official API portal or listed developer program on stylishop.com as of mid-2025.
What does `get_product_reviews` actually return — are individual review texts included?+
The endpoint returns aggregate and structured data: totalRatings, avgRatings, fitDetails, and fitInsights. Individual review text bodies are not part of the current response shape. You can fork this API on Parse and revise it to add an endpoint targeting individual review content if that data becomes accessible.
Does the API support filtering `list_products` by size, color, or other attributes?+
The list_products response includes a filters object describing available filter facets, but the endpoint inputs currently only accept context_slug, sort_by, page, and page_size. Passing attribute-based filter parameters is not supported in the current spec. You can fork the API on Parse and revise it to add filter input parameters to the listing endpoints.
Are both Arabic and English content available from all endpoints?+
The lang parameter accepting 'en' or 'ar' is available on get_homepage and list_categories. Other endpoints such as list_products, get_product_details, and get_product_reviews do not expose a lang input in the current spec, so language handling for those responses is fixed. You can fork this API on Parse and revise those endpoints to add language support.
Is wishlist, cart, or order history data accessible through this API?+
No. The API covers catalog browsing: products, categories, brands, search, reviews, and size guides. Account-specific data such as wishlists, cart contents, and order history is not exposed. You can fork the API on Parse and revise it to add endpoints for that data if it's available without authentication requirements.
Page content last updated . Spec covers 13 endpoints from stylishop.com.
Related APIs in EcommerceSee all →
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.
revolve.com API
Browse Revolve.com's fashion inventory by searching products, filtering by category or sale status, and discovering new arrivals in real-time. Access detailed product information including pricing, descriptions, and availability to power your shopping app or fashion platform.
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.
stories.com API
Search & Other Stories' catalog to find products by name or category, and retrieve detailed information including pricing, images, available sizes, colors, and materials for each item. Get comprehensive product details to compare styles, check inventory across variations, and make informed shopping decisions.
shopsy.in API
Search and browse products on Shopsy.in with detailed information like pricing, categories, and current deals, while easily navigating through paginated results. Get access to product specifications, homepage promotions, and category listings to compare items and find the best offers.
zalando.it API
Browse and extract product data from Zalando Italy, including search results, category listings, and full product detail pages.
cos.com API
Search and browse COS fashion products by name or category to instantly access pricing, product images, and direct links to items. Retrieve detailed information about specific products including descriptions, availability, and pricing to compare styles and make informed shopping decisions.
myntra.com API
Search and browse Myntra's fashion catalog to find products by category, price, brand, and color with detailed information including specifications, images, and customer reviews. Get sorted results across multiple pages and discover featured collections from the homepage and brand pages.