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
Crawlora's Zappos endpoints return search and product detail as normalized JSON with one API key — no Zappos account required.
Send a free-text term to /zappos/search for paginated, normalized products with brand, pricing, sale status, rating, and review count.
Pass a numeric productId (from a search result's product_id field or a product page URL) to /zappos/product/{productId} for full detail — brand, description, breadcrumbs, pricing, rating breakdown, featured reviews, and every sibling color variant. Add an optional colorId to select a specific color variant.
FAQ
Yes — /zappos/search uses real page-based pagination (up to 100 results per page). Requesting a page beyond page_count returns a normal 200 with an empty products array, not an error.
Yes — /zappos/product/{productId} returns up to two of Zappos's own site-selected featured reviews, each with a real author byline, date, review text, and rating dimensions. A product with no reviews yet returns an empty list.
Yes — pass an optional colorId (from a search result's color_id field) to /zappos/product/{productId}. An omitted or invalid colorId still resolves the base product using a real color variant rather than failing.