# Wayfair Product API (https://www.socialcrawl.dev/platforms/wayfair/product) > Returns full product detail for a Wayfair item: name, brand, manufacturer, current price, star rating, written-review count, stock status, the image gallery, colour and size variants, shipping estimate, return window, and a specification table combining Wayfair's highlights with its full dimension list. Note that the review count here counts the selected variant while the count on GET /v1/wayfair/search counts the whole catalogue entry, so the two legitimately differ for the same SKU. For the review text itself call GET /v1/wayfair/reviews. TL;DR: `GET /v1/wayfair/product` costs 5 credits per call and returns SocialCrawl's unified JSON schema. Single x-api-key auth, 100 free credits on signup. ## Parameters | Parameter | Required | Description | | --- | --- | --- | | `sku` | yes | Wayfair product SKU, the alphanumeric id at the end of a wayfair.com product URL: wayfair.com/furniture/pdp/-w003564166.html is SKU W003564166. SKUs also come back on every row of GET /v1/wayfair/search. | | `country` | no | Wayfair marketplace as a two-letter country code: US (wayfair.com, default), CA, GB, IE, or DE. A SKU from one marketplace will not always resolve in another. (US \| CA \| GB \| IE \| DE) | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/wayfair/product?sku=W003564166" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### What does the specification table contain? Wayfair's own highlights, such as swivel or lumbar support, plus its full dimension list grouped separately so you can tell a measurement from a feature. ### Is the product description usable? The detail endpoint's description field is retailer marketing copy, so we do not publish it. Use the description on the matching search row, which is genuine product text. ### Does it tell me how many are left in stock? It returns the stock status and Wayfair's own stock message, which often carries a unit count such as 792 left in stock. ### Are colour and size variants included? Yes, each with its own display id, so you can request a specific variant rather than whichever one Wayfair shows by default. ### How do I get this product's reviews? Call the reviews endpoint with the same SKU. Product detail carries a review count and rating but not the review text itself. See the full Wayfair API: https://www.socialcrawl.dev/platforms/wayfair ## Pricing - Standard endpoints: 1 credit per call - Advanced endpoints: 5 credits per call - Premium endpoints: 10 credits per call - 100 free credits on signup, no credit card required. Cached responses cost 0 credits. Credit packs never expire. - Full pricing: https://www.socialcrawl.dev/pricing ## Explore with AI Questions this API answers, phrased for an AI assistant: - How do I get a Wayfair product price with an API? - How to look up Wayfair product specifications by SKU - Does Wayfair show how many units are left in stock?