Footwear and apparel pricing monitoring
Use Zappos endpoints to turn footwear and apparel pricing monitoring into repeatable API requests with documented inputs and JSON responses.
Turn Zappos's own storefront data into structured footwear-and-apparel data — keyword product search with real page-based pagination, and per-product detail with pricing, breadcrumbs, aggregate rating with a star breakdown, up to two featured customer reviews, and every sibling color variant, all as normalized JSON. Credential-free.
Search Zappos's product catalog and get full product detail — pricing, ratings, featured reviews, and every color variant — as structured JSON.
Endpoint families
5
Documented params
15
Examples
5
Live catalog snapshot
Active endpoints
5
Methods
GET
Required params
9
Schema refs
5
{
"platform": "Zappos",
"endpoint": "zappos-search",
"method": "GET",
"path": "/zappos/search",
"auth": "apiKey"
}Use cases
Search Zappos's product catalog and get full product detail — pricing, ratings, featured reviews, and every color variant — as structured JSON.
Use Zappos endpoints to turn footwear and apparel pricing monitoring into repeatable API requests with documented inputs and JSON responses.
Use Zappos endpoints to turn product catalog research into repeatable API requests with documented inputs and JSON responses.
Use Zappos endpoints to turn color-variant and review tracking into repeatable API requests with documented inputs and JSON responses.
Managed execution
Every figure below is read from the live Zappos endpoint catalog — 5 endpoints, 15 documented request parameters, and 5 published response schemas — the same catalog Docs and Playground run against.
5 documented Zappos endpoints, grouped into 5 request families — Brand, Brands and Product, plus 2 more.
15 request parameters are documented across those Zappos endpoints, 9 of them required — the full input contract is public before you write any integration code.
5 of the 5 Zappos endpoints ship a recorded example response, and 5 carry a documented response schema — you can code against the real JSON before the first request.
Zappos endpoints document their error responses (400, 404, 429 and 503) alongside the success schema, so a block, a rate limit, or a missing record comes back as a typed error rather than silently empty data.
5 hosted MCP tools back the Zappos endpoints, so an agent can call the same routes with the same parameters and the same JSON contract, with no custom glue.
Coverage map
These cards are generated from the active endpoint catalog, so the landing page reflects the same API surface used by Docs and Playground.
/zappos/brand
/zappos/brands
/zappos/product/{productId}
/zappos/search
/zappos/suggest
Endpoint catalog
/zappos/searchSearches Zappos's product catalog by keyword, with real page-based pagination. Returns normalized products with brand, pricing, sale status, rating, and review count, plus filterable facets (gender, department, shoe size, and more) each with a live result count and its own drill-down URL. Requesting a page beyond the available results returns a normal, empty result rather than an error.
Response notes
- Pagination is real and page-based, up to 100 results per page (`page_size`). `page_count` is the total number of pages for the term; `has_more` is `true` while `page < page_count`. - Requesting a `page` beyond `page_count` returns a normal `200` with an empty `products` array, not an error. - `on_sale` and `is_new` are normalized booleans. `percent_off` is the upstream's own display string (e.g. `"26%"`). - `color_id` identifies the specific color variant shown in this search result; pass it as `colorId` to `/zappos/product/{productId}` to view that exact variant. - `facets` lists this page's own filterable fields. Each facet's `field` and `name` describe what it filters (e.g. gender, department, shoe size); each of its `values` carries a `value`, a live `count` for that filter, whether it is currently `selected`, and a drill-down `url`. A field with no usable values is omitted. Example response: ```json {"code":200,"msg":"OK","data":{"term":"running shoes","page":1,"page_size":100,"page_count":22,"total_count":2143,"count":2,"has_more":true,"products":[{"product_id":"10046325","style_id":"6667005","color_id":"1129636","brand_name":"adidas","product_name":"Terrex Tracefinder Plus Trail Running Shoes","product_type":"Shoes","color":"Khaki","style_color":"Khaki/Wonder Alumina/Aurora Coffee","price":"$100.00","original_price":"$100.00","percent_off":"0%","on_sale":false,"is_new":true,"gender":["Men"],"on_hand":71,"image_url":"https://m.media-amazon.com/images/I/71YMuToIkdL._SX1000_.jpg","url":"https://www.zappos.com/p/adidas-outdoor-terrex-tracefinder-plus-trail-running-shoes-khaki/product/10046325/color/1129636"},{"product_id":"9984297","style_id":"1146810","color_id":"1112488","brand_name":"HOKA","product_name":"Clifton 10","product_type":"Shoes","color":"Vanilla/Birch","style_color":"Vanilla/Birch","price":"$114.99","original_price":"$155.00","percent_off":"26%","on_sale":true,"is_new":false,"rating":4,"review_count":1546,"gender":["Women"],"on_hand":140,"image_url":"https://m.media-amazon.com/images/I/71zzmruQmAL._SX1000_.jpg","url":"https://www.zappos.com/p/hoka-clifton-10-vanilla-birch/product/9984297/color/1112488"}],"facets":[{"field":"txAttrFacet_Gender","name":"Gender","multi_select":false,"values":[{"value":"Women","count":1200,"selected":false,"url":"https://www.zappos.com/running-shoes-women/x.zso"},{"value":"Men","count":943,"selected":false,"url":"https://www.zappos.com/running-shoes-men/x.zso"}]}],"source_url":"https://www.zappos.com/search?page=1&term=running+shoes","fetched_at":"2026-08-10T10:00:00Z"}} ```
MCP tool zappos_search
/zappos/product/{productId}Returns one Zappos product's full detail: name, brand, description, category, breadcrumbs, pricing, images, aggregate rating with a 1-5 star breakdown, up to two featured customer reviews with real author/date/body/rating, reviewer-submitted fit feedback for size/width/arch (each response option's own share of respondents plus the most common answer), and every sibling color variant with its own price. productId is taken from a search result's product_id field or a product page's URL. colorId is optional and selects a specific color variant; an omitted or invalid colorId still resolves the base product using a real color variant rather than failing. An unrecognized productId returns 404.
Response notes
- `breadcrumbs` is the site's own navigation path to the product (e.g. `["shoes", "sneakers & athletic shoes", "HOKA"]`). - `rating`/`rating_count` are the product's aggregate rating and total review count. `rating_breakdown` maps each star value `"1"` through `"5"` to the percentage of reviewers who gave that rating. - `featured_reviews` holds Zappos's own site-selected featured reviews -- at most two (the page's "most helpful" and "most voted" picks) -- each with a real author byline, a date, the actual review text, and multiple rating dimensions. A product with no reviews yet returns an empty list, not an error. - `size_fit`, `width_fit`, and `arch_fit` summarize reviewer-submitted fit feedback for each dimension: `percentages` maps each response option's own text (e.g. `"Felt true to size"`) to the percentage of reviewers who chose it, and `most_common_answer`/`most_common_percentage` are the site's own "most common answer" summary. Absent when the product has no fit-feedback data for that dimension. - `color_variants` lists every sibling color of this product, including the one requested, each with its own price and a direct `url` to that color's own detail page. - `original_price` equals `price` when the product is not on sale. - An unrecognized `productId` returns `404`. A malformed `productId` or `colorId` returns `400` before any upstream request is made. Example response: ```json {"code":200,"msg":"OK","data":{"product_id":"9984297","color_id":"1112488","brand_name":"HOKA","product_name":"Clifton 10","description":"A trusted trainer for daily maintenance miles, the Hoka One One® Clifton 10 delivers a revitalized underfoot experience.","category":"sneakers & athletic shoes","breadcrumbs":["shoes","sneakers & athletic shoes","HOKA"],"color":"Vanilla/Birch","currency_code":"USD","price":"114.99","original_price":"155.00","in_stock":true,"images":["https://m.media-amazon.com/images/I/71zzmruQmAL._SX700_.jpg","https://m.media-amazon.com/images/I/71Et3HTxBXL._SX700_.jpg"],"rating":4,"rating_count":1546,"rating_breakdown":{"1":5,"2":3,"3":7,"4":10,"5":76},"featured_reviews":[{"id":"18383268","author":"Lori, Zappos Customer","date":"May 8, 2025 3:21:47 PM","body":"I have been getting a size 9 in the Hoka Cliftons since the Clifton 6. This time my toe comes all the way to the end of the shoe and the toe box is smaller.","overall_rating":1,"comfort_rating":1,"look_rating":1,"verified_purchase":false,"up_votes":152},{"id":"18360853","author":"Anonymous, Zappos Customer","date":"Apr 24, 2025 5:12:45 AM","body":"This shoe runs smaller than my previous Cliftons. They are much more narrow and that is sad.","overall_rating":3,"comfort_rating":3,"look_rating":3,"verified_purchase":false,"up_votes":67}],"size_fit":{"percentages":{"Felt true to size":80.40435,"Felt a half size smaller than marked":4.0435457},"most_common_answer":"Felt true to size","most_common_percentage":80},"width_fit":{"percentages":{"Felt true to width":86.08,"Felt wider than marked":4.96},"most_common_answer":"Felt true to width","most_common_percentage":86},"color_variants":[{"color_id":"151","color_name":"Black/White","price":"$99.83","original_price":"$155.00","percent_off":"36%","url":"https://www.zappos.com/product/9984297/color/151"},{"color_id":"1112488","color_name":"Vanilla/Birch","price":"$114.99","original_price":"$155.00","percent_off":"26%","url":"https://www.zappos.com/product/9984297/color/1112488"}],"url":"https://www.zappos.com/p/womens-hoka-clifton-10/product/9984297","source_url":"https://www.zappos.com/product/9984297/color/1112488","fetched_at":"2026-08-10T10:00:00Z"}} ```
MCP tool zappos_product
/zappos/brandReturns a Zappos brand page's product grid, with real page-based pagination and per-field filter facets. brand accepts a full brand URL copied from zappos.com, the "slug/id.zso" path from that URL, or just the opaque id from a GET /zappos/brands result's own id field. An unrecognized brand returns 404.
Response notes
- Pagination is real and page-based. `page_count` is the total number of pages for the brand; `has_more` is `true` while `page < page_count`. - Requesting a `page` beyond `page_count` returns a normal `200` with an empty `products` array, not an error. - `facets` lists this page's own filterable fields (gender, department, shoe size, and more), each value carrying a live `count` and a drill-down `url` -- see `GET /zappos/search`'s docs for the full shape. - `on_sale` and `is_new` are normalized booleans. `percent_off` is the upstream's own display string (e.g. `"26%"`). - An unrecognized `brand` returns `404`. Example response: ```json {"code":200,"msg":"OK","data":{"brand":"adidas-outdoor/WgLNGeICAQs.zso","brand_id":"WgLNGeICAQs","page":1,"page_size":100,"page_count":1,"total_count":49,"count":1,"has_more":false,"products":[{"product_id":"10046325","style_id":"6667005","color_id":"1129636","brand_name":"adidas","product_name":"Terrex Tracefinder Plus Trail Running Shoes","product_type":"Shoes","color":"Khaki","style_color":"Khaki/Wonder Alumina/Aurora Coffee","price":"$100.00","original_price":"$100.00","percent_off":"0%","on_sale":false,"is_new":true,"gender":["Men"],"on_hand":71,"image_url":"https://m.media-amazon.com/images/I/71YMuToIkdL._SX1000_.jpg","url":"https://www.zappos.com/p/adidas-outdoor-terrex-tracefinder-plus-trail-running-shoes-khaki/product/10046325/color/1129636"}],"facets":[{"field":"txAttrFacet_Gender","name":"Gender","multi_select":false,"values":[{"value":"Men","count":38,"selected":false,"url":"https://www.zappos.com/adidas-outdoor-men/x.zso"}]}],"source_url":"https://www.zappos.com/adidas-outdoor/WgLNGeICAQs.zso?page=0","fetched_at":"2026-08-11T10:00:00Z"}} ```
MCP tool zappos_brand
/zappos/brandsReturns a page of Zappos brands discovered from Zappos's own published sitemap, closing the discovery gap where a brand id otherwise has to be found elsewhere. Pair a returned id or url with GET /zappos/brand to browse that brand's product grid. name is derived from the brand's own URL slug (title-cased), not an authoritative site-provided label. q, if set, case-insensitively filters to brands whose derived name or slug contains it.
Response notes
- `name` is derived from the brand's own URL slug (title-cased), not an authoritative site-provided label -- Zappos's sitemap does not publish a display name. - The full brand list is refreshed periodically from Zappos's sitemap rather than fetched fresh on every request; a brief staleness window (up to a day) is expected and does not affect correctness of ids returned. - `has_next` indicates whether a later page has more results. Example response: ```json {"code":200,"msg":"OK","data":{"total":440,"page":1,"page_size":2,"has_next":true,"brands":[{"id":"WgLNGeICAQs","slug":"adidas-outdoor","name":"Adidas Outdoor","url":"https://www.zappos.com/adidas-outdoor/WgLNGeICAQs.zso"},{"id":"YgKfDuICAQw","slug":"toms","name":"Toms","url":"https://www.zappos.com/toms/YgKfDuICAQw.zso"}]}} ```
MCP tool zappos_brands
/zappos/suggestReturns Zappos's own search-box suggestions (typeahead) for a partial query: a flat list of suggested search phrases, no product data. A partial query with no real matches returns a normal, empty result rather than an error.
Response notes
- There is no pagination -- `suggestions` is a single flat list. - A partial query with no real matches returns a normal, empty result (`count: 0`, empty `suggestions`) rather than an error. Example response: ```json {"code":200,"msg":"OK","data":{"query":"boot","count":10,"suggestions":["womens boots","mens boots","sorel boots women","womens snow boots","chelsea boot women","cowboy boots women","womens rain boots","womens ugg boots","womens waterproof boots","work boots"],"source_url":"https://prod.olympus.zappos.com/hesiod/autocomplete/boot?categories=true&siteId=1&subsiteId=17","fetched_at":"2026-08-11T10:00:00Z"}} ```
MCP tool zappos_suggest
Related APIs
Marketplaces & Retail
Collect marketplace product signals from Amazon without building brittle storefront scrapers.
Marketplaces & Retail
Build resale, pricing, and marketplace workflows from structured eBay data.
Marketplaces & Retail
Turn public Shop.app product and merchant pages into structured JSON for e-commerce product intelligence, price research, shop monitoring, and marketplace discovery workflows.
Company coverage
Amazon.com, Inc. · AMZN
Zappos is operated by Amazon.com, Inc. (AMZN). Crawlora's SEC endpoints take the same company's CIK, so filings, financials, insider transactions and 13F holdings come from the same API key as the Zappos endpoints above.
SEC filings & financials API →How to scrape Zappos
A 2026-09-24 search for "running shoes" returned 2,159 matches with a gender facet split of 1,049 women's, 777 men's, 346 girls', and 344 boys' listings, plus a brand facet running from adidas at 147 down to single-digit niche labels. Zappos also splits a single label across multiple storefront pages rather than one canonical listing — filtering the brand directory for "adidas" returned seven separate sub-brand entries (Adidas Golf, Adidas Originals, Adidas Running, and more), each its own browsable page. Crawlora's five Zappos endpoints turn that search, brand directory, brand-page browsing, product detail, and typeahead into normalized JSON with one API key, no Zappos account required.
/zappos/search takes a free-text term and returns page-based results with facets for gender, department, category, and brand. A 2026-09-24 pull for "running shoes" reported 2,159 total matches across 22 pages, with Sneakers & Athletic Shoes accounting for 1,696 of them.
/zappos/brands lists brand ids and urls discovered from Zappos's own sitemap, filterable with q. Searching q=adidas returned seven distinct sub-brand pages rather than one — Zappos splits a single label into Golf, Originals, Outdoor, and Running variants, each browsable on its own.
Pass a brand id or url from /zappos/brands to /zappos/brand for that brand's paginated, facet-filterable product grid.
Pass a product_id and color_id to /zappos/product/{productId} for brand, breadcrumbs, pricing, and every sibling color variant. An ASICS Novablast 6 GTX pull returned two color options at $174.95 with no active discount.
/zappos/suggest returns typeahead phrases for a partial query — search terms only, with a genuinely empty result for an unmatched partial.
FAQ
Several — /zappos/brands returned seven separate sub-brand entries for a q=adidas filter (Golf, Golf Kids, Originals, Originals Kids, Outdoor, Outdoor Kids, and Running), each with its own id and url to pass to /zappos/brand.
It depends on the term — a 2026-09-24 pull for "running shoes" reported 2,159 total matches across 22 pages of up to 100 results each, with page_count and has_more telling you when to stop.
Yes — pass color_id (from a search result or a color_variants entry) to /zappos/product/{productId} alongside product_id; an omitted or invalid color_id still resolves the base product using a real color variant.
When present, up to two site-selected featured reviews come back with the product detail, plus a star rating breakdown — a product with none yet, like the ASICS pull used here, simply omits them rather than erroring.
Amazon has owned Zappos since 2009, when it acquired the online shoe and clothing retailer in a stock-and-cash deal reported at roughly $1.2 billion; Zappos has continued operating under its own brand and site since.