Uniqlo Product
curl --request GET \
--url https://app.retailed.io/api/v1/scraper/uniqlo/product \
--header 'x-api-key: <x-api-key>'import requests
url = "https://app.retailed.io/api/v1/scraper/uniqlo/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/uniqlo/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/uniqlo/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/uniqlo/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/uniqlo/product")
.header("x-api-key", "<x-api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.retailed.io/api/v1/scraper/uniqlo/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{
"id": "465200",
"eans": [],
"name": "Pullover Hoodie",
"upcs": [],
"brand": {},
"isbns": [],
"active": true,
"disabled": false,
"variants": [
{
"id": "465200COL01SMA002000",
"pricing": {
"sale": 34.9,
"value": {},
"standard": 34.9,
"available": true,
"quantities": [
{
"unit": "",
"value": 0
}
],
"multibuy_msg": "",
"formatted_sale": "£34.90",
"is_promo_price": false,
"price_percentage": "",
"sale_price_money": {},
"formatted_standard": "£34.90",
"show_standard_price": true,
"sale_price_available": true,
"standard_price_money": {},
"price_percentage_money": "",
"standard_price_available": true
},
"attributes": {
"size": "XS",
"color": "OFF WHITE"
},
"availability": {
"ats": "34",
"status": "IN_STOCK",
"in_stock": true,
"available": true,
"current_qty": 34,
"regular_qty": 34,
"in_stock_msg": "1 Item(s) In Stock",
"is_available": true,
"low_in_stock": false,
"selected_qty": "1",
"in_stock_date": "",
"pre_order_msg": "0 item(s) are available for pre-order.",
"qty_threshold": "3",
"back_order_msg": "Back Order 0 item(s)",
"purchase_level": "",
"status_quantity": "1",
"max_selected_qty": 34,
"available_for_sale": true,
"generally_available": true,
"selection_overdrive": false
}
}
],
"image_url": "https://image.uniqlo.com/UQ/ST3/eu/imagesgoods/465200/sub/eugoods_465200_sub1.jpg?width=734",
"story_ids": [],
"family_ids": [],
"review_ids": [],
"category_id": "IDzip-hoodies2242",
"description": "Pullover Hoodie",
"question_ids": [],
"model_numbers": [],
"attributes_order": [
"AVAILABILITY"
],
"product_page_url": "https://www.uniqlo.com/uk/en/product/pullover-hoodie-465200.html",
"brand_external_id": null,
"manufacturer_part_numbers": [
"465200"
]
}
Uniqlo
Uniqlo Product
Get product information from Uniqlo
GET
/
api
/
v1
/
scraper
/
uniqlo
/
product
Uniqlo Product
curl --request GET \
--url https://app.retailed.io/api/v1/scraper/uniqlo/product \
--header 'x-api-key: <x-api-key>'import requests
url = "https://app.retailed.io/api/v1/scraper/uniqlo/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/uniqlo/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/uniqlo/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/uniqlo/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/uniqlo/product")
.header("x-api-key", "<x-api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.retailed.io/api/v1/scraper/uniqlo/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{
"id": "465200",
"eans": [],
"name": "Pullover Hoodie",
"upcs": [],
"brand": {},
"isbns": [],
"active": true,
"disabled": false,
"variants": [
{
"id": "465200COL01SMA002000",
"pricing": {
"sale": 34.9,
"value": {},
"standard": 34.9,
"available": true,
"quantities": [
{
"unit": "",
"value": 0
}
],
"multibuy_msg": "",
"formatted_sale": "£34.90",
"is_promo_price": false,
"price_percentage": "",
"sale_price_money": {},
"formatted_standard": "£34.90",
"show_standard_price": true,
"sale_price_available": true,
"standard_price_money": {},
"price_percentage_money": "",
"standard_price_available": true
},
"attributes": {
"size": "XS",
"color": "OFF WHITE"
},
"availability": {
"ats": "34",
"status": "IN_STOCK",
"in_stock": true,
"available": true,
"current_qty": 34,
"regular_qty": 34,
"in_stock_msg": "1 Item(s) In Stock",
"is_available": true,
"low_in_stock": false,
"selected_qty": "1",
"in_stock_date": "",
"pre_order_msg": "0 item(s) are available for pre-order.",
"qty_threshold": "3",
"back_order_msg": "Back Order 0 item(s)",
"purchase_level": "",
"status_quantity": "1",
"max_selected_qty": 34,
"available_for_sale": true,
"generally_available": true,
"selection_overdrive": false
}
}
],
"image_url": "https://image.uniqlo.com/UQ/ST3/eu/imagesgoods/465200/sub/eugoods_465200_sub1.jpg?width=734",
"story_ids": [],
"family_ids": [],
"review_ids": [],
"category_id": "IDzip-hoodies2242",
"description": "Pullover Hoodie",
"question_ids": [],
"model_numbers": [],
"attributes_order": [
"AVAILABILITY"
],
"product_page_url": "https://www.uniqlo.com/uk/en/product/pullover-hoodie-465200.html",
"brand_external_id": null,
"manufacturer_part_numbers": [
"465200"
]
}
Header
string
required
Parameter defines the Retailed private key to use.
Parameters
string
Product Id :
465200 or Uniqlo URLstring
Country code :
FR or UKResponse
Product Object
Hide properties
Hide properties
string
Product Id
array
EANs
string
Product Name
array
UPCs
object
Brand
array
ISBNs
boolean
Active
boolean
Disabled
array
Variants
string
Image URL
array
Story Ids
array
Family Ids
array
Review Ids
string
Category Id
string
Description
array
Question Ids
array
Model Numbers
array
Attributes Order
string
Product Page URL
string
Brand External Id
array
Manufacturer Part Numbers
{
"id": "465200",
"eans": [],
"name": "Pullover Hoodie",
"upcs": [],
"brand": {},
"isbns": [],
"active": true,
"disabled": false,
"variants": [
{
"id": "465200COL01SMA002000",
"pricing": {
"sale": 34.9,
"value": {},
"standard": 34.9,
"available": true,
"quantities": [
{
"unit": "",
"value": 0
}
],
"multibuy_msg": "",
"formatted_sale": "£34.90",
"is_promo_price": false,
"price_percentage": "",
"sale_price_money": {},
"formatted_standard": "£34.90",
"show_standard_price": true,
"sale_price_available": true,
"standard_price_money": {},
"price_percentage_money": "",
"standard_price_available": true
},
"attributes": {
"size": "XS",
"color": "OFF WHITE"
},
"availability": {
"ats": "34",
"status": "IN_STOCK",
"in_stock": true,
"available": true,
"current_qty": 34,
"regular_qty": 34,
"in_stock_msg": "1 Item(s) In Stock",
"is_available": true,
"low_in_stock": false,
"selected_qty": "1",
"in_stock_date": "",
"pre_order_msg": "0 item(s) are available for pre-order.",
"qty_threshold": "3",
"back_order_msg": "Back Order 0 item(s)",
"purchase_level": "",
"status_quantity": "1",
"max_selected_qty": 34,
"available_for_sale": true,
"generally_available": true,
"selection_overdrive": false
}
}
],
"image_url": "https://image.uniqlo.com/UQ/ST3/eu/imagesgoods/465200/sub/eugoods_465200_sub1.jpg?width=734",
"story_ids": [],
"family_ids": [],
"review_ids": [],
"category_id": "IDzip-hoodies2242",
"description": "Pullover Hoodie",
"question_ids": [],
"model_numbers": [],
"attributes_order": [
"AVAILABILITY"
],
"product_page_url": "https://www.uniqlo.com/uk/en/product/pullover-hoodie-465200.html",
"brand_external_id": null,
"manufacturer_part_numbers": [
"465200"
]
}
Was this page helpful?
⌘I

