Skip to main content
POST
/
api
/
zara
/
stores
/
search
/zara/stores/search
curl --request POST \
  --url https://api.anysite.io/api/zara/stores/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "latitude": 0,
  "longitude": 0,
  "count": 2,
  "timeout": 300,
  "radius": 30
}
'
[
  {
    "id": "<string>",
    "@type": "@zara_store",
    "name": "<string>",
    "address": "<string>",
    "city": "<string>",
    "state": "<string>",
    "state_code": "<string>",
    "country": "<string>",
    "country_code": "<string>",
    "zip_code": "<string>",
    "latitude": 123,
    "longitude": 123,
    "phones": [],
    "type": "<string>",
    "kind": "<string>",
    "timezone": "<string>",
    "status": "<string>",
    "is_pickup_allowed": true,
    "has_ecommerce": true,
    "sections": [],
    "opening_hours": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
latitude
number
required

Latitude of the search point

Required range: -90 <= x <= 90
longitude
number
required

Longitude of the search point

Required range: -180 <= x <= 180
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
radius
integer
default:30

Search radius in kilometers

Required range: 1 <= x <= 100

Response

Successful Response

id
string
required
@type
string
default:@zara_store
name
string | null
address
string | null
city
string | null
state
string | null
state_code
string | null
country
string | null
country_code
string | null
zip_code
string | null
latitude
number | null
longitude
number | null
phones
string[]
type
string | null
kind
string | null
timezone
string | null
status
string | null
is_pickup_allowed
boolean | null
has_ecommerce
boolean | null
sections
string[]
opening_hours
ZaraStoreOpeningHours · object[]