GET
/
api
/
v2
/
variants
curl --request GET \
  --url https://api.sneakersapi.dev/api/v2/variants \
  --header 'Authorization: <api-key>'
{
  "status": "success",
  "error": "",
  "message": "",
  "query": {},
  "data": [
    {
      "id": "5e7d339e-4e2b-444a-8d41-098f7b84ff76",
      "product_id": "bafb6cd2-f2c4-4a71-933d-76363bccc3e0",
      "sku": "NF0A3C8DKX71",
      "title": "The North Face 1996 Retro Nuptse Jacket Black",
      "description": "700 fill goose down; certified to the Responsible Down Standard (RDS) by Control Union.",
      "brand": "The North Face",
      "category": "Apparel & Accessories",
      "color": "Black",
      "gender": "male",
      "gtin": "195437057236",
      "size": "XXL",
      "link": "https://stockx.pvxt.net/c/4722526/1023711/9060?prodsku=5e7d339e-4e2b-444a-8d41-098f7b84ff76&u=https%3A%2F%2Fstockx.com%2Fthe-north-face-1996-retro-nuptse-jacket-black%3Fcountry%3DUS%26currencyCode%3DUSD%26size%3DXXL&intsrc=CATF_7942",
      "image": "https://images.stockx.com/images/The-North-Face-1996-Retro-Nuptse-Jacket-Black.jpg",
      "price": 457,
      "currency": "USD",
      "tags": [
        "streetwear",
        "Other Brands The North Face"
      ],
      "metadata": {
        "category": "streetwear",
        "model": "Other Brands The North Face"
      },
      "source": "stockx"
    },
    /* ... */
  ],
  "meta": {
    "total": 1102022,
    "total_pages": 55102
  }
}
sku
string

Find product by SKU, this is a exact match search.

gtin
string

Find product by GTIN, this is a contains match search.


Example: 000111222333 will be matched with 111222333 or 111222.

page
string

Page

This endpoint contains all data, not only StockX data. We are working on adding more data from other sources, actually 1.1 million variants are available at writing time.

SKU is often return multiple variants as SKU is a global identifier for the product and its variants. GTIN will often return a single variant.

{
  "status": "success",
  "error": "",
  "message": "",
  "query": {},
  "data": [
    {
      "id": "5e7d339e-4e2b-444a-8d41-098f7b84ff76",
      "product_id": "bafb6cd2-f2c4-4a71-933d-76363bccc3e0",
      "sku": "NF0A3C8DKX71",
      "title": "The North Face 1996 Retro Nuptse Jacket Black",
      "description": "700 fill goose down; certified to the Responsible Down Standard (RDS) by Control Union.",
      "brand": "The North Face",
      "category": "Apparel & Accessories",
      "color": "Black",
      "gender": "male",
      "gtin": "195437057236",
      "size": "XXL",
      "link": "https://stockx.pvxt.net/c/4722526/1023711/9060?prodsku=5e7d339e-4e2b-444a-8d41-098f7b84ff76&u=https%3A%2F%2Fstockx.com%2Fthe-north-face-1996-retro-nuptse-jacket-black%3Fcountry%3DUS%26currencyCode%3DUSD%26size%3DXXL&intsrc=CATF_7942",
      "image": "https://images.stockx.com/images/The-North-Face-1996-Retro-Nuptse-Jacket-Black.jpg",
      "price": 457,
      "currency": "USD",
      "tags": [
        "streetwear",
        "Other Brands The North Face"
      ],
      "metadata": {
        "category": "streetwear",
        "model": "Other Brands The North Face"
      },
      "source": "stockx"
    },
    /* ... */
  ],
  "meta": {
    "total": 1102022,
    "total_pages": 55102
  }
}