Zara Product
curl --request GET \
--url https://app.retailed.io/api/v1/scraper/zara/product \
--header 'x-api-key: <x-api-key>'import requests
url = "https://app.retailed.io/api/v1/scraper/zara/product"
headers = {"x-api-key": "<x-api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<x-api-key>'}};
fetch('https://app.retailed.io/api/v1/scraper/zara/product', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://app.retailed.io/api/v1/scraper/zara/product",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <x-api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://app.retailed.io/api/v1/scraper/zara/product"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<x-api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://app.retailed.io/api/v1/scraper/zara/product")
.header("x-api-key", "<x-api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.retailed.io/api/v1/scraper/zara/product")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<x-api-key>'
response = http.request(request)
puts response.read_body{
"sku": "384637190-251-1",
"name": "MINI DRESS ZW COLLECTION",
"color": "Oyster-white",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"variants": [
{
"sku": "384637190-251-1",
"size": "XS",
"color": "Oyster-white",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-251-2",
"size": "S",
"color": "Oyster-white",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-251-3",
"size": "M",
"color": "Oyster-white",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-251-4",
"size": "L",
"color": "Oyster-white",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-251-5",
"size": "XL",
"color": "Oyster-white",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-251-6",
"size": "XXL",
"color": "Oyster-white",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-600-1",
"size": "XS",
"color": "Red",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-600-2",
"size": "S",
"color": "Red",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-600-3",
"size": "M",
"color": "Red",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-600-4",
"size": "L",
"color": "Red",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-600-5",
"size": "XL",
"color": "Red",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-600-6",
"size": "XXL",
"color": "Red",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-800-1",
"size": "XS",
"color": "Black",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-800-2",
"size": "S",
"color": "Black",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-800-3",
"size": "M",
"color": "Black",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-800-4",
"size": "L",
"color": "Black",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-800-5",
"size": "XL",
"color": "Black",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-800-6",
"size": "XXL",
"color": "Black",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-620-1",
"size": "XS",
"color": "Pink",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-620-2",
"size": "S",
"color": "Pink",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-620-3",
"size": "M",
"color": "Pink",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-620-4",
"size": "L",
"color": "Pink",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-620-5",
"size": "XL",
"color": "Pink",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-620-6",
"size": "XXL",
"color": "Pink",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-500-1",
"size": "XS",
"color": "Green",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-500-2",
"size": "S",
"color": "Green",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-500-3",
"size": "M",
"color": "Green",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-500-4",
"size": "L",
"color": "Green",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-500-5",
"size": "XL",
"color": "Green",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-500-6",
"size": "XXL",
"color": "Green",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
}
],
"description": "ZARA WOMAN COLLECTION\n\nShort halter dress. Pronounced tonal topstitching detail. Back hidden in-seam zip closure."
}
Zara
Zara Product
Get product information from Zara
GET
/
api
/
v1
/
scraper
/
zara
/
product
Zara Product
curl --request GET \
--url https://app.retailed.io/api/v1/scraper/zara/product \
--header 'x-api-key: <x-api-key>'import requests
url = "https://app.retailed.io/api/v1/scraper/zara/product"
headers = {"x-api-key": "<x-api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<x-api-key>'}};
fetch('https://app.retailed.io/api/v1/scraper/zara/product', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://app.retailed.io/api/v1/scraper/zara/product",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <x-api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://app.retailed.io/api/v1/scraper/zara/product"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<x-api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://app.retailed.io/api/v1/scraper/zara/product")
.header("x-api-key", "<x-api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.retailed.io/api/v1/scraper/zara/product")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<x-api-key>'
response = http.request(request)
puts response.read_body{
"sku": "384637190-251-1",
"name": "MINI DRESS ZW COLLECTION",
"color": "Oyster-white",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"variants": [
{
"sku": "384637190-251-1",
"size": "XS",
"color": "Oyster-white",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-251-2",
"size": "S",
"color": "Oyster-white",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-251-3",
"size": "M",
"color": "Oyster-white",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-251-4",
"size": "L",
"color": "Oyster-white",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-251-5",
"size": "XL",
"color": "Oyster-white",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-251-6",
"size": "XXL",
"color": "Oyster-white",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-600-1",
"size": "XS",
"color": "Red",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-600-2",
"size": "S",
"color": "Red",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-600-3",
"size": "M",
"color": "Red",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-600-4",
"size": "L",
"color": "Red",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-600-5",
"size": "XL",
"color": "Red",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-600-6",
"size": "XXL",
"color": "Red",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-800-1",
"size": "XS",
"color": "Black",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-800-2",
"size": "S",
"color": "Black",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-800-3",
"size": "M",
"color": "Black",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-800-4",
"size": "L",
"color": "Black",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-800-5",
"size": "XL",
"color": "Black",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-800-6",
"size": "XXL",
"color": "Black",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-620-1",
"size": "XS",
"color": "Pink",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-620-2",
"size": "S",
"color": "Pink",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-620-3",
"size": "M",
"color": "Pink",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-620-4",
"size": "L",
"color": "Pink",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-620-5",
"size": "XL",
"color": "Pink",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-620-6",
"size": "XXL",
"color": "Pink",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-500-1",
"size": "XS",
"color": "Green",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-500-2",
"size": "S",
"color": "Green",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-500-3",
"size": "M",
"color": "Green",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-500-4",
"size": "L",
"color": "Green",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-500-5",
"size": "XL",
"color": "Green",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-500-6",
"size": "XXL",
"color": "Green",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
}
],
"description": "ZARA WOMAN COLLECTION\n\nShort halter dress. Pronounced tonal topstitching detail. Back hidden in-seam zip closure."
}
Header
Parameter defines the Retailed private key to use.
Parameters
Product Id :
https://www.zara.com/us/en/mini-dress-zw-collection-p07954315.html{
"sku": "384637190-251-1",
"name": "MINI DRESS ZW COLLECTION",
"color": "Oyster-white",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"variants": [
{
"sku": "384637190-251-1",
"size": "XS",
"color": "Oyster-white",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-251-2",
"size": "S",
"color": "Oyster-white",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-251-3",
"size": "M",
"color": "Oyster-white",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-251-4",
"size": "L",
"color": "Oyster-white",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-251-5",
"size": "XL",
"color": "Oyster-white",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-251-6",
"size": "XXL",
"color": "Oyster-white",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-600-1",
"size": "XS",
"color": "Red",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-600-2",
"size": "S",
"color": "Red",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-600-3",
"size": "M",
"color": "Red",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-600-4",
"size": "L",
"color": "Red",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-600-5",
"size": "XL",
"color": "Red",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-600-6",
"size": "XXL",
"color": "Red",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-800-1",
"size": "XS",
"color": "Black",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-800-2",
"size": "S",
"color": "Black",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-800-3",
"size": "M",
"color": "Black",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-800-4",
"size": "L",
"color": "Black",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-800-5",
"size": "XL",
"color": "Black",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-800-6",
"size": "XXL",
"color": "Black",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-620-1",
"size": "XS",
"color": "Pink",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-620-2",
"size": "S",
"color": "Pink",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-620-3",
"size": "M",
"color": "Pink",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-620-4",
"size": "L",
"color": "Pink",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-620-5",
"size": "XL",
"color": "Pink",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-620-6",
"size": "XXL",
"color": "Pink",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-500-1",
"size": "XS",
"color": "Green",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-500-2",
"size": "S",
"color": "Green",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-500-3",
"size": "M",
"color": "Green",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-500-4",
"size": "L",
"color": "Green",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-500-5",
"size": "XL",
"color": "Green",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
},
{
"sku": "384637190-500-6",
"size": "XXL",
"color": "Green",
"image": "https://static.zara.net/assets/public/45f2/c876/3ec742e89832/25bfa96a53ac/03267484251-p/03267484251-p.jpg?ts=1718812280105&w=1920",
"price": 49.9,
"price_currency": "USD"
}
],
"description": "ZARA WOMAN COLLECTION\n\nShort halter dress. Pronounced tonal topstitching detail. Back hidden in-seam zip closure."
}
Was this page helpful?
⌘I

