StadiumGoods Product
curl --request GET \
--url https://app.retailed.io/api/v1/scraper/stadiumgoods/product \
--header 'x-api-key: <x-api-key>'import requests
url = "https://app.retailed.io/api/v1/scraper/stadiumgoods/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/stadiumgoods/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/stadiumgoods/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/stadiumgoods/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/stadiumgoods/product")
.header("x-api-key", "<x-api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.retailed.io/api/v1/scraper/stadiumgoods/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": "17523559",
"slug": "wmns-air-jordan-1-mid-grey-fog-17523559",
"name": "WMNS Air Jordan 1 Mid Grey Fog",
"description": "The Women’s Air Jordan 1 Mid “Grey Fog” is a women's colorway of Michael Jordan’s first signature shoe in its mid-top style that excels in versatility. The “Grey Fog” brings another appealing look to the Air Jordan 1 Mid, one of the most popular shoes in Jordan Brand’s collection. Designed to be dressed up or down, the “Grey Fog” features white leather on the perforated toe, mid-panel, and collar. Contrasting Grey Fog leather appears on the overlays on the toe cap, forefoot, eyelets, collar, and heel. The Swoosh is found in black leather and a black Wings logo appears on the collar. Additional branding, including a black Jumpman logo and “Air” detailing, can be found on the white nylon tongue tag.",
"sku": "BQ6472-015",
"images": [
"https://img.stadiumgoods.com/jordan-wmns-air-jordan-1-mid-grey-fog_17523559_43042724_2048.jpg",
"https://img.stadiumgoods.com/jordan-wmns-air-jordan-1-mid-grey-fog_17523559_43042726_2048.jpg",
"https://img.stadiumgoods.com/jordan-wmns-air-jordan-1-mid-grey-fog_17523559_43043800_2048.jpg",
"https://img.stadiumgoods.com/jordan-wmns-air-jordan-1-mid-grey-fog_17523559_43043813_2048.jpg",
"https://img.stadiumgoods.com/jordan-wmns-air-jordan-1-mid-grey-fog_17523559_43043819_2048.jpg",
"https://img.stadiumgoods.com/jordan-wmns-air-jordan-1-mid-grey-fog_17523559_43043827_2048.jpg"
]
}
Stadium Goods
StadiumGoods Product
Get product information from StadiumGoods
GET
/
api
/
v1
/
scraper
/
stadiumgoods
/
product
StadiumGoods Product
curl --request GET \
--url https://app.retailed.io/api/v1/scraper/stadiumgoods/product \
--header 'x-api-key: <x-api-key>'import requests
url = "https://app.retailed.io/api/v1/scraper/stadiumgoods/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/stadiumgoods/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/stadiumgoods/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/stadiumgoods/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/stadiumgoods/product")
.header("x-api-key", "<x-api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.retailed.io/api/v1/scraper/stadiumgoods/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": "17523559",
"slug": "wmns-air-jordan-1-mid-grey-fog-17523559",
"name": "WMNS Air Jordan 1 Mid Grey Fog",
"description": "The Women’s Air Jordan 1 Mid “Grey Fog” is a women's colorway of Michael Jordan’s first signature shoe in its mid-top style that excels in versatility. The “Grey Fog” brings another appealing look to the Air Jordan 1 Mid, one of the most popular shoes in Jordan Brand’s collection. Designed to be dressed up or down, the “Grey Fog” features white leather on the perforated toe, mid-panel, and collar. Contrasting Grey Fog leather appears on the overlays on the toe cap, forefoot, eyelets, collar, and heel. The Swoosh is found in black leather and a black Wings logo appears on the collar. Additional branding, including a black Jumpman logo and “Air” detailing, can be found on the white nylon tongue tag.",
"sku": "BQ6472-015",
"images": [
"https://img.stadiumgoods.com/jordan-wmns-air-jordan-1-mid-grey-fog_17523559_43042724_2048.jpg",
"https://img.stadiumgoods.com/jordan-wmns-air-jordan-1-mid-grey-fog_17523559_43042726_2048.jpg",
"https://img.stadiumgoods.com/jordan-wmns-air-jordan-1-mid-grey-fog_17523559_43043800_2048.jpg",
"https://img.stadiumgoods.com/jordan-wmns-air-jordan-1-mid-grey-fog_17523559_43043813_2048.jpg",
"https://img.stadiumgoods.com/jordan-wmns-air-jordan-1-mid-grey-fog_17523559_43043819_2048.jpg",
"https://img.stadiumgoods.com/jordan-wmns-air-jordan-1-mid-grey-fog_17523559_43043827_2048.jpg"
]
}
Header
Parameter defines the Retailed private key to use.
Parameters
Product SKU :
BQ6472-015 or StadiumGoods URLResponse
{
"id": "17523559",
"slug": "wmns-air-jordan-1-mid-grey-fog-17523559",
"name": "WMNS Air Jordan 1 Mid Grey Fog",
"description": "The Women’s Air Jordan 1 Mid “Grey Fog” is a women's colorway of Michael Jordan’s first signature shoe in its mid-top style that excels in versatility. The “Grey Fog” brings another appealing look to the Air Jordan 1 Mid, one of the most popular shoes in Jordan Brand’s collection. Designed to be dressed up or down, the “Grey Fog” features white leather on the perforated toe, mid-panel, and collar. Contrasting Grey Fog leather appears on the overlays on the toe cap, forefoot, eyelets, collar, and heel. The Swoosh is found in black leather and a black Wings logo appears on the collar. Additional branding, including a black Jumpman logo and “Air” detailing, can be found on the white nylon tongue tag.",
"sku": "BQ6472-015",
"images": [
"https://img.stadiumgoods.com/jordan-wmns-air-jordan-1-mid-grey-fog_17523559_43042724_2048.jpg",
"https://img.stadiumgoods.com/jordan-wmns-air-jordan-1-mid-grey-fog_17523559_43042726_2048.jpg",
"https://img.stadiumgoods.com/jordan-wmns-air-jordan-1-mid-grey-fog_17523559_43043800_2048.jpg",
"https://img.stadiumgoods.com/jordan-wmns-air-jordan-1-mid-grey-fog_17523559_43043813_2048.jpg",
"https://img.stadiumgoods.com/jordan-wmns-air-jordan-1-mid-grey-fog_17523559_43043819_2048.jpg",
"https://img.stadiumgoods.com/jordan-wmns-air-jordan-1-mid-grey-fog_17523559_43043827_2048.jpg"
]
}
Was this page helpful?
⌘I

