Skip to main content
POST
/
api
/
wayfair
/
sellers
/wayfair/sellers
curl --request POST \
  --url https://api.anysite.io/api/wayfair/sellers \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "seller": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@wayfair_seller",
    "url": "<string>",
    "alias": "<string>",
    "name": "<string>",
    "description": "<string>",
    "image": "<string>",
    "collections": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
seller
string
required

Wayfair brand id or a brand page URL

Minimum string length: 1
Examples:

"44308"

"https://www.wayfair.com/brand/bnd/ebern-designs-b44308.html"

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_seller
url
string | null
alias
string | null
name
string | null
description
string | null
image
string | null
collections
WayfairSellerCollection · object[]