# Wayfair Reviews API (https://www.socialcrawl.dev/platforms/wayfair/reviews) > Returns written customer reviews for a Wayfair product, 10 per page, each with the review text, star rating, reviewer name and location, submission date, verified-purchase flag, and any reviewer photos. Pages do not overlap and the review total is stable across pages, so a full crawl is deterministic: pass the returned cursor back until has_more is false. Wayfair does not publish helpful-vote counts or review headlines, so those fields are always null here. TL;DR: `GET /v1/wayfair/reviews` 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) | | `page` | no | Page number, starting at 1. Prefer the universal cursor parameter. | | `sort_order` | no | Review ordering: relevance (default), helpful, date_ascending, date_descending, rating_ascending, or rating_descending. (relevance \| helpful \| date_ascending \| date_descending \| rating_ascending \| rating_descending) | | `star` | no | Return only reviews with this star rating, 1 to 5. | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/wayfair/reviews?sku=W003564166" \ -H "x-api-key: sc_YOUR_API_KEY" ``` 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