Skip to main content
POST
/
api
/
zara
/
products
/
search
/zara/products/search
curl --request POST \
  --url https://api.anysite.io/api/zara/products/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "keyword": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "url": "<string>",
    "@type": "@zara_product_search_result",
    "name": "<string>",
    "alias": "<string>",
    "seo_product_id": "<string>",
    "reference": "<string>",
    "display_reference": "<string>",
    "price": 123,
    "section": "<string>",
    "family": "<string>",
    "subfamily": "<string>",
    "kind": "<string>",
    "color": "<string>",
    "hex_code": "<string>",
    "color_count": 123,
    "availability": "<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:

"dress"

count
integer
required

Max number of results

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
url
string
required
@type
string
default:@zara_product_search_result
name
string | null
alias
string | null
seo_product_id
string | null
reference
string | null
display_reference
string | null
price
number | null
section
string | null
family
string | null
subfamily
string | null
kind
string | null
color
string | null
hex_code
string | null
color_count
integer | null
availability
string | null
image
string | null
images
string[]