Skip to main content
POST
/
api
/
wayfair
/
products
/
search
/wayfair/products/search
curl --request POST \
  --url https://api.anysite.io/api/wayfair/products/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "keyword": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@wayfair_search_product",
    "url": "<string>",
    "title": "<string>",
    "price": 123,
    "list_price": 123,
    "currency": "<string>",
    "discount": "<string>",
    "image": "<string>",
    "images": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
keyword
string
required

Search keyword

Minimum string length: 1
Example:

"velvet accent chair"

count
integer
required

Max number of products to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
@type
string
default:@wayfair_search_product
url
string | null
title
string | null
price
number | null
list_price
number | null
currency
string | null
discount
string | null
image
string | null
images
string[]