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 August 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 49 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. |
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 49 platforms covering 10B+ monthly active users.
One schema, every platform
Query 49 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"
}
}
}Have a question? We got answers
Find answers to frequently asked questions about SocialCrawl's API, pricing, and capabilities.
Contact usHow many products come back per page?
Can I filter Wayfair search by price?
Do search rows include a product description?
Is the result total reliable?
How do I sort Wayfair search results?
Ask AI about SocialCrawl
Ready to scrape Wayfair Search data?
Get your API key and start pulling Wayfair data in under 60 seconds.
