Discover/Scuffers API
live

Scuffers APIscuffers.com

Access Scuffers fashion catalog via API: search products, browse 239+ collections, get full product details, new arrivals, and sale items with discount data.

This API takes change requests — .
Endpoint health
verified 4h ago
search_products
get_categories
get_category_products
get_product
get_new_arrivals
6/6 passing latest checkself-healing
Endpoints
6
Updated
5h ago

What is the Scuffers API?

The Scuffers API exposes 6 endpoints covering the full Scuffers fashion catalog, from keyword search to detailed product records. The get_product endpoint returns complete variant data including sizes, colors, all image URLs, and tags, while get_sale_items includes a computed discount_percent field. You can browse over 239 collections enumerated by get_categories and paginate through their contents using get_category_products.

This call costs1 credit / call— charged only on success
Try it
Page number for pagination (currently limited to 10 results per query by the upstream search suggest API).
Search query text (e.g. 'shirt', 'hoodie', 'sneakers').
Optional product type filter to narrow results (e.g. 'Man Shirt Longsleeved'). Matches the product_type field.
api.parse.bot/scraper/5ec1a691-e1c4-4185-ab4a-b536b857a326/<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/5ec1a691-e1c4-4185-ab4a-b536b857a326/search_products?page=1&query=shirt' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 6 totalmissing one? ·

Search products by keyword with optional category filter. Returns up to 10 matching products per query. Results come from the site's search suggest engine and are ranked by relevance.

Input
ParamTypeDescription
pageintegerPage number for pagination (currently limited to 10 results per query by the upstream search suggest API).
queryrequiredstringSearch query text (e.g. 'shirt', 'hoodie', 'sneakers').
categorystringOptional product type filter to narrow results (e.g. 'Man Shirt Longsleeved'). Matches the product_type field.
Response
{
  "type": "object",
  "fields": {
    "count": "Number of products returned",
    "query": "The search query that was executed",
    "products": "Array of matching products with id, name, handle, price, compare_at_price, image, url, sku, product_type, vendor, available"
  },
  "sample": {
    "data": {
      "count": 10,
      "query": "shirt",
      "products": [
        {
          "id": 10047251382600,
          "sku": null,
          "url": "https://scuffers.com/products/japan-shirt",
          "name": "Japan Shirt",
          "image": "https://cdn.shopify.com/s/files/1/0035/9828/6912/files/DROP9ECOM0358.jpg?v=1778487974",
          "price": "109.00",
          "handle": "japan-shirt",
          "vendor": "Scuffers",
          "available": true,
          "product_type": "Man Shirt Longsleeved",
          "compare_at_price": "109.00"
        }
      ]
    },
    "status": "success"
  }
}

About the Scuffers API

Product Search and Browsing

The search_products endpoint accepts a required query string (e.g. 'hoodie', 'sneakers') and an optional category filter that matches against the product_type field. Results return up to 10 products per query and include id, name, handle, price, compare_at_price, image, url, sku, product_type, vendor, and available status. The get_categories endpoint retrieves the full list of collections — typically around 239 — each with a handle, title, url, and published_at timestamp. Collection handles returned here feed directly into get_category_products as the category_id parameter.

Category and Collection Products

get_category_products accepts a category_id (the collection handle, e.g. 'footwear' or 'accessories') and an optional page integer for pagination. Each page returns up to 30 products with id, name, handle, price, compare_at_price, sku, image, url, product_type, and vendor. Passing an unrecognized handle returns an empty products array rather than an error. The same pagination model applies to get_new_arrivals and get_sale_items, both returning up to 30 products per page.

Product Details and Sale Data

get_product accepts either a product handle (e.g. 'japan-shirt') or a full product URL. The response includes the full description, all images as an array of full-resolution URLs, sizes and colors arrays reflecting available variants, tags, and per-variant sku data. The get_sale_items endpoint surfaces a discount_percent field computed from the difference between compare_at_price and the current price, making it straightforward to sort or filter by markdown depth without additional calculation.

Reliability & maintenanceVerified

The Scuffers API is a managed, monitored endpoint for scuffers.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when scuffers.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 scuffers.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
4h 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
  • Build a price-drop alert tool using get_sale_items and the discount_percent field to track markdowns over time.
  • Aggregate new arrivals feeds by polling get_new_arrivals and detecting newly added handle values.
  • Populate a fashion search interface using search_products with optional category filtering by product_type.
  • Enumerate the full product catalog by iterating all 239+ collection handles from get_categories through get_category_products.
  • Display complete product pages with size selectors and image galleries using get_product variant and images data.
  • Compare price vs compare_at_price across collections to identify partially discounted products outside the main sale collection.
  • Filter vendor-specific inventory by checking the vendor field returned across category and search endpoints.
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 Scuffers have an official developer API?+
Scuffers does not publish a public developer API or API documentation. This Parse API is the available programmatic interface for accessing the Scuffers catalog.
What does `get_product` return that the listing endpoints don't?+
get_product returns the full product description, a tags array, a complete images array with all product photo URLs, and separate sizes and colors arrays derived from variant options. Listing endpoints like get_category_products and search_products return only a single representative image URL and no variant breakdown.
How many results does `search_products` return, and can I page through more?+
Search results are capped at 10 products per query. The endpoint accepts a page parameter, but the underlying search suggest behavior limits results to 10 per request regardless of page. If you need broader coverage of a product type, use get_category_products with an appropriate collection handle from get_categories instead.
Does the API expose customer reviews or ratings for products?+
Not currently. The API covers product catalog data: details, variants, pricing, images, and sale information. You can fork this API on Parse and revise it to add a reviews endpoint if Scuffers surfaces review data on product pages.
Is stock or inventory quantity data available per variant?+
The search_products endpoint returns an available boolean per product, but individual variant inventory quantities are not included in any endpoint's response. The get_product endpoint returns variant options (sizes, colors, SKUs) without per-variant stock counts. You can fork this API on Parse and revise it to surface per-variant availability if that data is present on product pages.
Page content last updated . Spec covers 6 endpoints from scuffers.com.
Related APIs in EcommerceSee all →
abercrombie.com API
Search and browse Abercrombie & Fitch products across categories, new arrivals, and clearance items while retrieving detailed product information like pricing and availability. Access curated collections and find exactly what you're looking for with powerful search capabilities.
stadiumgoods.com API
Search and discover premium sneakers and streetwear from Stadium Goods. Retrieve detailed product specifications, variant-level pricing, and real-time inventory status across the full catalog and curated collections.
sneakers.com API
Search and browse sneaker products across categories and brands, view detailed product information, and discover current flash sales and trending searches from sneakers.com. Get instant access to sneaker listings, pricing, and real-time sale events to find exactly what you're looking for.
scan.co.uk API
Search and compare computer hardware and tech products from Scan.co.uk. Access detailed product specifications, pricing in GBP, stock availability, customer reviews, and daily special offers across all categories including GPUs, CPUs, storage, peripherals, and more.
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.
zumiez.com API
Search Zumiez products by keyword, browse products by category path, and fetch detailed product information (pricing, images, stock status, and attributes) using a product group ID.
urbanoutfitters.com API
Search Urban Outfitters' catalog to find products and browse categories, then view detailed information including prices, descriptions, color and size availability for each item. Check current sale counts and discover what's trending across the store's product lineup.
footlocker.com API
Access product listings, pricing, availability, customer reviews, release calendars, and category/brand browsing data from Foot Locker.