Dior Product
curl --request GET \
--url https://app.retailed.io/api/v1/scraper/dior/product \
--header 'x-api-key: <x-api-key>'import requests
url = "https://app.retailed.io/api/v1/scraper/dior/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/dior/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/dior/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/dior/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/dior/product")
.header("x-api-key", "<x-api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.retailed.io/api/v1/scraper/dior/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": "M0505OIHM_M911_TU",
"code": "M0505OIHM_M911",
"look": null,
"tags": null,
"image": {
"alt": "Sac Lady Dior Mini Vue de face",
"uri": "https://assets.christiandior.com/is/image/diorprod/M0505OIHMM911_E01?$default_GHC$&crop=476,632,967,1171",
"width": 460,
"height": 497,
"view_code": "E01"
},
"title": "Sac Lady Dior Mini",
"video": null,
"images": [],
"status": "OUTOFSTOCK",
"has_vto": false,
"services": {
"retouch": false
},
"subtitle": "Satin brodé de perles à motif Cannage noir",
"variants": [],
"pre_sales": null,
"tags_keys": [
"New"
],
"free_block": null,
"backend_sku": "M0505OIHMM911",
"category_id": "diorcom_femme_sacs_sacsamain_ladydior",
"description": "Le sac Lady Dior incarne parfaitement la vision d'élégance et de beauté de la maison Dior. Raffinée et féminine, cette création est intemporelle. Ce modèle d'exception est confectionné en satin noir brodé de perles ton sur ton dessinant le motif Cannage. Les charms D.I.O.R. en métal doré pâle rehaussent et illuminent sa silhouette. Doté d'une bandoulière chaîne amovible, ce sac Lady Dior Mini pourra être porté à la main ou crossbody et sera le compagnon de soirée idéal.",
"inspiration": null,
"size_and_fit": "Dimensions : 17 x 15 x 7 cm (Longueur x Hauteur x Largeur)\r\nLa taille convient parfaitement à un téléphone, un porte-cartes et un rouge à lèvres\r\nLongueur de la chaîne : 120 cm\r\nLongueur de la chaîne portée : 59 cm",
"sub_universe": "femme",
"customization": null,
"has_size_guide": false,
"characteristics": [
"Chaîne détachable",
"Poche intérieure zippée",
"Ce sac peut être mixé avec les bandoulières brodées de la Maison",
"Sac de protection inclus",
"Fabriqué en Italie"
],
"personalization": null,
"size_declinations": null,
"external_variations": null,
"has_multiple_prices": false,
"preorder_shipping_date": null,
"size_declination_label": "MINI",
"personalization_sections": null
}
Dior
Dior Product
Get product information from Dior
GET
/
api
/
v1
/
scraper
/
dior
/
product
Dior Product
curl --request GET \
--url https://app.retailed.io/api/v1/scraper/dior/product \
--header 'x-api-key: <x-api-key>'import requests
url = "https://app.retailed.io/api/v1/scraper/dior/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/dior/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/dior/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/dior/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/dior/product")
.header("x-api-key", "<x-api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.retailed.io/api/v1/scraper/dior/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": "M0505OIHM_M911_TU",
"code": "M0505OIHM_M911",
"look": null,
"tags": null,
"image": {
"alt": "Sac Lady Dior Mini Vue de face",
"uri": "https://assets.christiandior.com/is/image/diorprod/M0505OIHMM911_E01?$default_GHC$&crop=476,632,967,1171",
"width": 460,
"height": 497,
"view_code": "E01"
},
"title": "Sac Lady Dior Mini",
"video": null,
"images": [],
"status": "OUTOFSTOCK",
"has_vto": false,
"services": {
"retouch": false
},
"subtitle": "Satin brodé de perles à motif Cannage noir",
"variants": [],
"pre_sales": null,
"tags_keys": [
"New"
],
"free_block": null,
"backend_sku": "M0505OIHMM911",
"category_id": "diorcom_femme_sacs_sacsamain_ladydior",
"description": "Le sac Lady Dior incarne parfaitement la vision d'élégance et de beauté de la maison Dior. Raffinée et féminine, cette création est intemporelle. Ce modèle d'exception est confectionné en satin noir brodé de perles ton sur ton dessinant le motif Cannage. Les charms D.I.O.R. en métal doré pâle rehaussent et illuminent sa silhouette. Doté d'une bandoulière chaîne amovible, ce sac Lady Dior Mini pourra être porté à la main ou crossbody et sera le compagnon de soirée idéal.",
"inspiration": null,
"size_and_fit": "Dimensions : 17 x 15 x 7 cm (Longueur x Hauteur x Largeur)\r\nLa taille convient parfaitement à un téléphone, un porte-cartes et un rouge à lèvres\r\nLongueur de la chaîne : 120 cm\r\nLongueur de la chaîne portée : 59 cm",
"sub_universe": "femme",
"customization": null,
"has_size_guide": false,
"characteristics": [
"Chaîne détachable",
"Poche intérieure zippée",
"Ce sac peut être mixé avec les bandoulières brodées de la Maison",
"Sac de protection inclus",
"Fabriqué en Italie"
],
"personalization": null,
"size_declinations": null,
"external_variations": null,
"has_multiple_prices": false,
"preorder_shipping_date": null,
"size_declination_label": "MINI",
"personalization_sections": null
}
Header
string
required
Parameter defines the Retailed private key to use.
Parameters
string
Product URL
Response
Product Object
Hide properties
Hide properties
string
Product SKU
string
Product Code
string
Product Look
list
Product Tags
object
Product Image
string
Product Title
string
Product Video
array
Product Images
string
Product Status
boolean
Product Has VTO
object
Product Services
string
Product Subtitle
array
Product Variants
string
Product Pre Sales
list
Product Tags Keys
string
Product Free Block
string
Product Backend SKU
string
Product Category ID
string
Product Description
string
Product Inspiration
string
Product Size and Fit
string
Product Sub Universe
string
Product Customization
boolean
Product Has Size Guide
list
Product Characteristics
string
Product Personalization
string
Product Size Declinations
string
Product External Variations
boolean
Product Has Multiple Prices
string
Product Preorder Shipping Date
string
Product Size Declination Label
string
Product Personalization Sections
{
"sku": "M0505OIHM_M911_TU",
"code": "M0505OIHM_M911",
"look": null,
"tags": null,
"image": {
"alt": "Sac Lady Dior Mini Vue de face",
"uri": "https://assets.christiandior.com/is/image/diorprod/M0505OIHMM911_E01?$default_GHC$&crop=476,632,967,1171",
"width": 460,
"height": 497,
"view_code": "E01"
},
"title": "Sac Lady Dior Mini",
"video": null,
"images": [],
"status": "OUTOFSTOCK",
"has_vto": false,
"services": {
"retouch": false
},
"subtitle": "Satin brodé de perles à motif Cannage noir",
"variants": [],
"pre_sales": null,
"tags_keys": [
"New"
],
"free_block": null,
"backend_sku": "M0505OIHMM911",
"category_id": "diorcom_femme_sacs_sacsamain_ladydior",
"description": "Le sac Lady Dior incarne parfaitement la vision d'élégance et de beauté de la maison Dior. Raffinée et féminine, cette création est intemporelle. Ce modèle d'exception est confectionné en satin noir brodé de perles ton sur ton dessinant le motif Cannage. Les charms D.I.O.R. en métal doré pâle rehaussent et illuminent sa silhouette. Doté d'une bandoulière chaîne amovible, ce sac Lady Dior Mini pourra être porté à la main ou crossbody et sera le compagnon de soirée idéal.",
"inspiration": null,
"size_and_fit": "Dimensions : 17 x 15 x 7 cm (Longueur x Hauteur x Largeur)\r\nLa taille convient parfaitement à un téléphone, un porte-cartes et un rouge à lèvres\r\nLongueur de la chaîne : 120 cm\r\nLongueur de la chaîne portée : 59 cm",
"sub_universe": "femme",
"customization": null,
"has_size_guide": false,
"characteristics": [
"Chaîne détachable",
"Poche intérieure zippée",
"Ce sac peut être mixé avec les bandoulières brodées de la Maison",
"Sac de protection inclus",
"Fabriqué en Italie"
],
"personalization": null,
"size_declinations": null,
"external_variations": null,
"has_multiple_prices": false,
"preorder_shipping_date": null,
"size_declination_label": "MINI",
"personalization_sections": null
}
Was this page helpful?
⌘I

