Wayfair Search API
Scrape Wayfair Search data with one API call. Returns Wayfair products matching a keyword, 48 per page by default, each with its SKU, name, brand, current and list price, star rating, review count, product URL, image, a short product description, and attribute highlights such as swivel or adjustable height. Feed a returned SKU into GET /v1/wayfair/product for full detail or GET /v1/wayfair/reviews for customer reviews. Two things to expect when crawling: consecutive pages repeat roughly a quarter of their rows because Wayfair reorders results between calls, so de-duplicate on product.id; and the result total Wayfair reports drifts between pages, so it is not returned here. Paginate until a page comes back empty.
Last updated September 2026Maintained by the SocialCrawl team
Returns Wayfair products matching a keyword, each with its SKU, name, brand, price, rating, review count, image, and a short description.
Use it to find SKUs to feed the product and reviews endpoints. Consecutive pages repeat some rows, so de-duplicate by product id when paging.
Searching 65 platforms in parallel
What can you do with the Search API?
The Search endpoint gives you structured Wayfair data with computed fields in a single request. No scraping infrastructure to build or maintain.
Example Request
curl -H "x-api-key: YOUR_API_KEY" \
"https://www.socialcrawl.dev/v1/wayfair/search?query=office+chair"import requests
response = requests.get(
"https://www.socialcrawl.dev/v1/wayfair/search",
params={
'query': 'office chair',
},
headers={"x-api-key": "YOUR_API_KEY"},
)
data = response.json()const response = await fetch(
"https://www.socialcrawl.dev/v1/wayfair/search?query=office+chair",
{
headers: { "x-api-key": "YOUR_API_KEY" },
},
);
const data = await response.json();Parameters
| Parameter | Required | Description |
|---|---|---|
| query | Yes | Free-text product search, for example office chair or velvet sofa. |
| 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. |
| items_per_page | No | Rows per page: 24, 48 (default), or 96. (24 | 48 | 96) |
| sort_by | No | Result ordering: relevance (default), price_low, price_high, top_rated, or newest. (relevance | price_low | price_high | top_rated | newest) |
| min_price | No | Lowest price to include. Applied by Wayfair and approximate, so filter on product.price.current if you need a hard bound. |
| max_price | No | Highest price to include. Applied by Wayfair and approximate, so filter on product.price.current if you need a hard bound. |
| color | No | Restrict results to one colour family, for example grey. |
| in_stock | No | Set true to return only products Wayfair can ship now. |
What does the Wayfair Search API return?
Every response follows one unified schema. Here is a real, unmodified response body, so you can see the exact fields you get back before spending a credit.
Example response
{
"success": true,
"platform": "amazon",
"endpoint": "/v1/amazon/product-search",
"data": {
"items": [
{
"product": {
"id": "B0H73T3PD7",
"url": "https://www.amazon.com/dp/B0H73T3PD7",
"title": "Wireless Earbuds, Bluetooth 5.4 Ear Buds Bass Stereo, Headphones with Noise Cancelling Mic, LED Display in Ear Earphones Clear Calls, IP7 Waterproof Bluetooth Earbuds for Phone/Android/iPad, Black",
"description": null,
"seller": null,
"brand": null,
"price": {
"current": 19.99,
"original": null,
"currency": "USD"
},
"rating": {
"average": 4.9,
"count": 641
},
"image_urls": "https://m.media-amazon.com/images/I/61QGlXzWdKL._AC_UY218_.jpg",
"availability": null,
"reviews_count": null
}
},
{
"product": {
"id": "B0H5VN7MDL",
"url": "https://www.amazon.com/dp/B0H5VN7MDL",
"title": "HAOYUYAN Wireless Earbuds, Sports Bluetooth Headphones, LED Power Display Ear Buds with 80Hrs Playtime, Noise Canceling Headset, IPX7 Waterproof Earphones for Workout/Running",
"description": null,
"seller": null,
"brand": null,
"price": {
"current": 23.98,
"original": null,
"currency": "USD"
},
"rating": {
"average": 4.8,
"count": 290
},
"image_urls": "https://m.media-amazon.com/images/I/61DzAvRWJlL._AC_UY218_.jpg",
"availability": null,
"reviews_count": null
}
}
],
"total": null,
"dropped": 0
},
"credits_used": 1,
"credits_remaining": 9999,
"request_id": "req_example000000",
"cached": false,
"pagination": {
"next_cursor": null,
"has_more": false,
"page_size": 20
}
}Example captured from the Amazon API. Every SocialCrawl endpoint returns this same unified schema, so your Wayfair Search response has the same fields.
How does the Wayfair Search API work?
Send a GET request with your API key and get back clean, structured JSON in our unified schema. Supported computed fields are populated when the source provides the required inputs.
Method
GET
Response
JSON
How do you scrape social media data in seconds?
The fastest social media scraping API for developers. Scrape profiles, posts, comments, and analytics from 65 platforms covering 10B+ monthly active users.
One schema, every platform
Query 65 platforms with identical response structures. Write your integration once.
Computed fields, not just scraped
When an endpoint supports these metrics and the source provides the required inputs, the normalized record includes engagement_rate, estimated_reach, content_category, and language. Ready to use.
See your data before you code
Visual Data Explorer. Paste any URL, get rich result cards, sortable tables, CSV export.
import requests
response = requests.get(
'https://www.socialcrawl.dev/v1/tiktok/profile',
params={'handle': 'charlidamelio'},
headers={'x-api-key': 'sc_YOUR_API_KEY'}
)
data = response.json(){
"success": true,
"platform": "tiktok",
"data": {
"author": {
"username": "charlidamelio",
"followers": 152400000
},
"engagement": {
"likes": 12400000000,
"engagement_rate": 0.087
},
"metadata": {
"language": "en",
"content_category": "lifestyle"
}
}
}Ready to scrape Wayfair Search data?
Get your API key and start pulling Wayfair data in under 60 seconds.
