> ## Documentation Index
> Fetch the complete documentation index at: https://docs.retailed.io/llms.txt
> Use this file to discover all available pages before exploring further.

# StockX Search

> Search for products on StockX

### Header

<ParamField header="x-api-key" type="string" required={true}>
  Parameter defines the Retailed private key to use.
</ParamField>

### Parameters

<ParamField query="query" type="string" optional={false} placeholder="Air Jordan Retro">
  Search query. Can be a product name, brand, or SKU like `Air Jordan Retro`, `DN3707-100` or `air-jordan-3-retro-white-cement-reimagined`
</ParamField>

### Response

<ResponseField name="list" type="Search List">
  <Expandable title="properties" defaultOpen={true}>
    <ResponseField name="id" type="string">
      StockX product id
    </ResponseField>

    <ResponseField name="slug" type="string">
      StockX product slug
    </ResponseField>

    <ResponseField name="name" type="string">
      Product name
    </ResponseField>

    <ResponseField name="sku" type="string">
      Product SKU
    </ResponseField>

    <ResponseField name="category" type="string">
      Product category
    </ResponseField>

    <ResponseField name="brand" type="string">
      Product brand
    </ResponseField>

    <ResponseField name="image" type="string">
      Product image
    </ResponseField>

    <ResponseField name="colorway" type="string">
      Product colorway
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseExample>
  ```json Example Response theme={null}
  [
      {
          "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)"
      }
  ]
  ```
</ResponseExample>
