Zalando Product
curl --request GET \
--url https://app.retailed.io/api/v1/scraper/zalando/product \
--header 'x-api-key: <x-api-key>'import requests
url = "https://app.retailed.io/api/v1/scraper/zalando/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/zalando/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/zalando/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/zalando/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/zalando/product")
.header("x-api-key", "<x-api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.retailed.io/api/v1/scraper/zalando/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": "6MO22T02J-O11",
"name": "CAPOSPALLA LUNGO - Blouson Bomber - fantasia marrone",
"brand": "MOSCHINO",
"color": "fantasia marrone/marron",
"images": [
"https://img01.ztat.net/article/spp-media-p1/e8f92021826f4259b567a3ac95d1ae7e/0420fa906f1f42a0bb58b2efd0eb48d1.jpg?imwidth=103",
"https://img01.ztat.net/article/spp-media-p1/2ede32d1afc94252bdfc43781ca4f621/bd83a85742a4452e8761781bcfe4fca5.jpg?imwidth=103",
"https://img01.ztat.net/article/spp-media-p1/0b6219e7377b439a87c3e8fffc292509/db6289c5036a425a865aa289c8eb6d2f.jpg?imwidth=103",
"https://img01.ztat.net/article/spp-media-p1/7bcfee6dd5284358bc036d9e68cbca31/3da96105c03d4467a8841252e8381fbe.jpg?imwidth=103",
"https://img01.ztat.net/article/spp-media-p1/6d4c0eb8b9e545919a94642bf1ccd8af/ad19f29bffc24f1984cf3fc40fc7289f.jpg?imwidth=103&filter=packshot",
"https://img01.ztat.net/article/spp-media-p1/d267c39f4128422a9e721a1fc160ae13/f0837c77b89740aba0de26c2609fefdc.jpg?imwidth=103"
],
"variants": [
{
"sku": "6MO22T02J-O110050000",
"price": 1335,
"price_currency": "EUR"
},
{
"sku": "6MO22T02J-O110052000",
"price": 1335,
"price_currency": "EUR"
},
{
"sku": "6MO22T02J-O110054000",
"price": 1335,
"price_currency": "EUR"
}
],
"description": " MOSCHINO CAPOSPALLA LUNGO - Blouson Bomber - fantasia marrone pour 1 335,00 € (2024-07-25) Livraison gratuite sur la plupart des commandes*",
"manufacturer": "MOSCHINO"
}
Zalando
Zalando Product
Get product information from Zalando
GET
/
api
/
v1
/
scraper
/
zalando
/
product
Zalando Product
curl --request GET \
--url https://app.retailed.io/api/v1/scraper/zalando/product \
--header 'x-api-key: <x-api-key>'import requests
url = "https://app.retailed.io/api/v1/scraper/zalando/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/zalando/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/zalando/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/zalando/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/zalando/product")
.header("x-api-key", "<x-api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.retailed.io/api/v1/scraper/zalando/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": "6MO22T02J-O11",
"name": "CAPOSPALLA LUNGO - Blouson Bomber - fantasia marrone",
"brand": "MOSCHINO",
"color": "fantasia marrone/marron",
"images": [
"https://img01.ztat.net/article/spp-media-p1/e8f92021826f4259b567a3ac95d1ae7e/0420fa906f1f42a0bb58b2efd0eb48d1.jpg?imwidth=103",
"https://img01.ztat.net/article/spp-media-p1/2ede32d1afc94252bdfc43781ca4f621/bd83a85742a4452e8761781bcfe4fca5.jpg?imwidth=103",
"https://img01.ztat.net/article/spp-media-p1/0b6219e7377b439a87c3e8fffc292509/db6289c5036a425a865aa289c8eb6d2f.jpg?imwidth=103",
"https://img01.ztat.net/article/spp-media-p1/7bcfee6dd5284358bc036d9e68cbca31/3da96105c03d4467a8841252e8381fbe.jpg?imwidth=103",
"https://img01.ztat.net/article/spp-media-p1/6d4c0eb8b9e545919a94642bf1ccd8af/ad19f29bffc24f1984cf3fc40fc7289f.jpg?imwidth=103&filter=packshot",
"https://img01.ztat.net/article/spp-media-p1/d267c39f4128422a9e721a1fc160ae13/f0837c77b89740aba0de26c2609fefdc.jpg?imwidth=103"
],
"variants": [
{
"sku": "6MO22T02J-O110050000",
"price": 1335,
"price_currency": "EUR"
},
{
"sku": "6MO22T02J-O110052000",
"price": 1335,
"price_currency": "EUR"
},
{
"sku": "6MO22T02J-O110054000",
"price": 1335,
"price_currency": "EUR"
}
],
"description": " MOSCHINO CAPOSPALLA LUNGO - Blouson Bomber - fantasia marrone pour 1 335,00 € (2024-07-25) Livraison gratuite sur la plupart des commandes*",
"manufacturer": "MOSCHINO"
}
Header
Parameter defines the Retailed private key to use.
Parameters
Product URL
Response
{
"sku": "6MO22T02J-O11",
"name": "CAPOSPALLA LUNGO - Blouson Bomber - fantasia marrone",
"brand": "MOSCHINO",
"color": "fantasia marrone/marron",
"images": [
"https://img01.ztat.net/article/spp-media-p1/e8f92021826f4259b567a3ac95d1ae7e/0420fa906f1f42a0bb58b2efd0eb48d1.jpg?imwidth=103",
"https://img01.ztat.net/article/spp-media-p1/2ede32d1afc94252bdfc43781ca4f621/bd83a85742a4452e8761781bcfe4fca5.jpg?imwidth=103",
"https://img01.ztat.net/article/spp-media-p1/0b6219e7377b439a87c3e8fffc292509/db6289c5036a425a865aa289c8eb6d2f.jpg?imwidth=103",
"https://img01.ztat.net/article/spp-media-p1/7bcfee6dd5284358bc036d9e68cbca31/3da96105c03d4467a8841252e8381fbe.jpg?imwidth=103",
"https://img01.ztat.net/article/spp-media-p1/6d4c0eb8b9e545919a94642bf1ccd8af/ad19f29bffc24f1984cf3fc40fc7289f.jpg?imwidth=103&filter=packshot",
"https://img01.ztat.net/article/spp-media-p1/d267c39f4128422a9e721a1fc160ae13/f0837c77b89740aba0de26c2609fefdc.jpg?imwidth=103"
],
"variants": [
{
"sku": "6MO22T02J-O110050000",
"price": 1335,
"price_currency": "EUR"
},
{
"sku": "6MO22T02J-O110052000",
"price": 1335,
"price_currency": "EUR"
},
{
"sku": "6MO22T02J-O110054000",
"price": 1335,
"price_currency": "EUR"
}
],
"description": " MOSCHINO CAPOSPALLA LUNGO - Blouson Bomber - fantasia marrone pour 1 335,00 € (2024-07-25) Livraison gratuite sur la plupart des commandes*",
"manufacturer": "MOSCHINO"
}
Was this page helpful?
⌘I

