Skip to main content
GET
/
api
/
v1
/
scraper
/
stockx
/
search
StockX Search
curl --request GET \
  --url https://app.retailed.io/api/v1/scraper/stockx/search \
  --header 'x-api-key: <x-api-key>'
import requests

url = "https://app.retailed.io/api/v1/scraper/stockx/search"

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/stockx/search', 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/stockx/search",
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/stockx/search"

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/stockx/search")
.header("x-api-key", "<x-api-key>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://app.retailed.io/api/v1/scraper/stockx/search")

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": "8eec82c0-7cd9-4e9c-a7e8-21c5552e889c",
        "slug": "air-jordan-1-high-og-unc-toe",
        "name": "Jordan 1 Retro High OG",
        "sku": "DZ5485-400",
        "category": "sneakers",
        "brand": "Jordan",
        "image": "https://images.stockx.com/images/Air-Jordan-1-High-OG-UNC-Toe-Product.jpg",
        "colorway": "UNC Toe"
    },
    {
        "id": "9d40ce4f-8617-4f6d-ae95-25e49b07e744",
        "slug": "air-jordan-1-high-og-spider-man-across-the-spider-verse",
        "name": "Jordan 1 Retro High OG",
        "sku": "DV1748-601",
        "category": "sneakers",
        "brand": "Jordan",
        "image": "https://images.stockx.com/images/Air-Jordan-1-High-OG-Spider-Man-Across-the-Spider-Verse-Product.jpg",
        "colorway": "Spider-Man Across the Spider-Verse"
    },
    {
        "id": "9650199f-84b8-4bed-8b19-47b9b65fc2fc",
        "slug": "air-jordan-12-retro-stealth",
        "name": "Jordan 12 Retro",
        "sku": "CT8013-015",
        "category": "sneakers",
        "brand": "Jordan",
        "image": "https://images.stockx.com/images/Air-Jordan-12-Retro-Stealth-Product.jpg",
        "colorway": "Stealth"
    },
    {
        "id": "d7ac89d3-3dae-472f-84bd-caaa717df781",
        "slug": "air-jordan-4-retro-thunder-2023",
        "name": "Jordan 4 Retro",
        "sku": "DH6927-017",
        "category": "sneakers",
        "brand": "Jordan",
        "image": "https://images.stockx.com/images/Air-Jordan-4-Retro-Thunder-2023-Product.jpg",
        "colorway": "Thunder (2023)"
    },
    {
        "id": "726706b0-cde9-4df3-aa5c-81b120c79560",
        "slug": "air-jordan-3-retro-white-cement-reimagined",
        "name": "Jordan 3 Retro",
        "sku": "DN3707-100",
        "category": "sneakers",
        "brand": "Jordan",
        "image": "https://images.stockx.com/images/Air-Jordan-3-Retro-White-Cement-Reimagined-Product.jpg",
        "colorway": "White Cement Reimagined"
    },
    {
        "id": "74092dca-add8-4e12-a657-98b863f23601",
        "slug": "air-jordan-6-retro-toro-bravo",
        "name": "Jordan 6 Retro",
        "sku": "CT8529-600",
        "category": "sneakers",
        "brand": "Jordan",
        "image": "https://images.stockx.com/images/Air-Jordan-6-Retro-Toro-Bravo-Product.jpg",
        "colorway": "Toro Bravo"
    },
    {
        "id": "b6ad86bb-aec8-4b13-9296-5733d57aa786",
        "slug": "air-jordan-11-retro-cherry-2022",
        "name": "Jordan 11 Retro",
        "sku": "CT8012-116",
        "category": "sneakers",
        "brand": "Jordan",
        "image": "https://images.stockx.com/images/Air-Jordan-11-Retro-Cherry-2022-Product.jpg",
        "colorway": "Cherry (2022)"
    },
    {
        "id": "ecddfa93-90ab-4f24-80fb-4d4a67cac348",
        "slug": "air-jordan-1-retro-high-og-washed-black",
        "name": "Jordan 1 Retro High OG",
        "sku": "DZ5485-051",
        "category": "sneakers",
        "brand": "Jordan",
        "image": "https://images.stockx.com/images/Air-Jordan-1-Retro-High-OG-Washed-Black-Product.jpg",
        "colorway": "Washed Black"
    },
    {
        "id": "0b629369-b70d-464a-a3f9-94feea26601e",
        "slug": "air-jordan-1-retro-high-og-lucky-green",
        "name": "Jordan 1 Retro High OG",
        "sku": "DZ5485-031",
        "category": "sneakers",
        "brand": "Jordan",
        "image": "https://images.stockx.com/images/Air-Jordan-1-Retro-High-OG-Lucky-Green-Product.jpg",
        "colorway": "Lucky Green"
    },
    {
        "id": "b05a5e21-62f6-4001-88bc-4cbcb91bfabe",
        "slug": "air-jordan-1-retro-low-og-sp-travis-scott-olive-w",
        "name": "Jordan 1 Retro Low OG SP",
        "sku": "DZ4137-106",
        "category": "sneakers",
        "brand": "Jordan",
        "image": "https://images.stockx.com/images/Air-Jordan-1-Retro-Low-OG-SP-Travis-Scott-Olive-W-Product.jpg",
        "colorway": "Travis Scott Olive (Women's)"
    }
]
x-api-key
string
required
Parameter defines the Retailed private key to use.

Parameters

query
string
Search query. Can be a product name, brand, or SKU like Air Jordan Retro, DN3707-100 or air-jordan-3-retro-white-cement-reimagined

Response

list
Search List
[
    {
        "id": "8eec82c0-7cd9-4e9c-a7e8-21c5552e889c",
        "slug": "air-jordan-1-high-og-unc-toe",
        "name": "Jordan 1 Retro High OG",
        "sku": "DZ5485-400",
        "category": "sneakers",
        "brand": "Jordan",
        "image": "https://images.stockx.com/images/Air-Jordan-1-High-OG-UNC-Toe-Product.jpg",
        "colorway": "UNC Toe"
    },
    {
        "id": "9d40ce4f-8617-4f6d-ae95-25e49b07e744",
        "slug": "air-jordan-1-high-og-spider-man-across-the-spider-verse",
        "name": "Jordan 1 Retro High OG",
        "sku": "DV1748-601",
        "category": "sneakers",
        "brand": "Jordan",
        "image": "https://images.stockx.com/images/Air-Jordan-1-High-OG-Spider-Man-Across-the-Spider-Verse-Product.jpg",
        "colorway": "Spider-Man Across the Spider-Verse"
    },
    {
        "id": "9650199f-84b8-4bed-8b19-47b9b65fc2fc",
        "slug": "air-jordan-12-retro-stealth",
        "name": "Jordan 12 Retro",
        "sku": "CT8013-015",
        "category": "sneakers",
        "brand": "Jordan",
        "image": "https://images.stockx.com/images/Air-Jordan-12-Retro-Stealth-Product.jpg",
        "colorway": "Stealth"
    },
    {
        "id": "d7ac89d3-3dae-472f-84bd-caaa717df781",
        "slug": "air-jordan-4-retro-thunder-2023",
        "name": "Jordan 4 Retro",
        "sku": "DH6927-017",
        "category": "sneakers",
        "brand": "Jordan",
        "image": "https://images.stockx.com/images/Air-Jordan-4-Retro-Thunder-2023-Product.jpg",
        "colorway": "Thunder (2023)"
    },
    {
        "id": "726706b0-cde9-4df3-aa5c-81b120c79560",
        "slug": "air-jordan-3-retro-white-cement-reimagined",
        "name": "Jordan 3 Retro",
        "sku": "DN3707-100",
        "category": "sneakers",
        "brand": "Jordan",
        "image": "https://images.stockx.com/images/Air-Jordan-3-Retro-White-Cement-Reimagined-Product.jpg",
        "colorway": "White Cement Reimagined"
    },
    {
        "id": "74092dca-add8-4e12-a657-98b863f23601",
        "slug": "air-jordan-6-retro-toro-bravo",
        "name": "Jordan 6 Retro",
        "sku": "CT8529-600",
        "category": "sneakers",
        "brand": "Jordan",
        "image": "https://images.stockx.com/images/Air-Jordan-6-Retro-Toro-Bravo-Product.jpg",
        "colorway": "Toro Bravo"
    },
    {
        "id": "b6ad86bb-aec8-4b13-9296-5733d57aa786",
        "slug": "air-jordan-11-retro-cherry-2022",
        "name": "Jordan 11 Retro",
        "sku": "CT8012-116",
        "category": "sneakers",
        "brand": "Jordan",
        "image": "https://images.stockx.com/images/Air-Jordan-11-Retro-Cherry-2022-Product.jpg",
        "colorway": "Cherry (2022)"
    },
    {
        "id": "ecddfa93-90ab-4f24-80fb-4d4a67cac348",
        "slug": "air-jordan-1-retro-high-og-washed-black",
        "name": "Jordan 1 Retro High OG",
        "sku": "DZ5485-051",
        "category": "sneakers",
        "brand": "Jordan",
        "image": "https://images.stockx.com/images/Air-Jordan-1-Retro-High-OG-Washed-Black-Product.jpg",
        "colorway": "Washed Black"
    },
    {
        "id": "0b629369-b70d-464a-a3f9-94feea26601e",
        "slug": "air-jordan-1-retro-high-og-lucky-green",
        "name": "Jordan 1 Retro High OG",
        "sku": "DZ5485-031",
        "category": "sneakers",
        "brand": "Jordan",
        "image": "https://images.stockx.com/images/Air-Jordan-1-Retro-High-OG-Lucky-Green-Product.jpg",
        "colorway": "Lucky Green"
    },
    {
        "id": "b05a5e21-62f6-4001-88bc-4cbcb91bfabe",
        "slug": "air-jordan-1-retro-low-og-sp-travis-scott-olive-w",
        "name": "Jordan 1 Retro Low OG SP",
        "sku": "DZ4137-106",
        "category": "sneakers",
        "brand": "Jordan",
        "image": "https://images.stockx.com/images/Air-Jordan-1-Retro-Low-OG-SP-Travis-Scott-Olive-W-Product.jpg",
        "colorway": "Travis Scott Olive (Women's)"
    }
]