GET
/
api
/
v2
/
products
curl --request GET \
  --url https://api.sneakersapi.dev/api/v2/products \
  --header 'Authorization: <api-key>'
{
  "status": "success",
  "error": "",
  "message": "",
  "query": {},
  "data": [
    {
      "id": "bcb8b592-18c7-4354-82d7-732941e1d17a",
      "slug": "nike-dunk-high-wutang-2024-bcb8b",
      "title": "Nike Dunk High Wu-Tang (2024)",
      "description": "The Nike Dunk High Wu-Tang (2024) brings back one of the most legendary sneaker collaborations in history. First released in 1999, the original Wu-Tang Dunk High was one of the earliest examples of a sneaker partnership with a music group, setting the stage for the future of sneaker culture. Finished in the Wu-Tang Clan's signature black and goldenrod color scheme, this 2024 retro release stays true to the original with its bold, eye-catching design. The custom Wu-Tang logo on the heel and tongue label remains an iconic detail, paying tribute to the group's legacy.<br><br>The Wu-Tang Dunk High features a premium leather upper in striking black and yellow, giving the sneaker a high-quality look and feel. Its classic high-top design offers support and comfort, making it perfect for both casual wear and street style. The sneaker’s retro roots, combined with the Wu-Tang Clan’s influence on music and culture, make this an essential addition for fans of both hip-hop and sneaker culture. Nike’s return of this historic design is sure to draw significant attention from collectors and enthusiasts alike.<br><br>Released on September 28, 2024, the Nike Dunk High Wu-Tang retailed for $150. This limited-edition sneaker is not just a piece of footwear—it’s a cultural artifact that celebrates the intersection of music and fashion, making it one of the year’s most highly anticipated releases.",
      "brand": "Nike",
      "category": "sneakers",
      "color": "Black/Pollen/White",
      "sku": "HJ4320-001",
      "gender": "male",
      "image": "https://images.stockx.com/images/Nike-Dunk-High-Wu-Tang-2024-Product.jpg",
      "avg_price": 210.5,
      "min_price": 149,
      "max_price": 299,
      "currency": "USD",
      "release_date": "2024-11-09",
      "retail_price": 150,
      "retail_currency": "USD",
      "weekly_rank": 1,
      "weekly_aov": 229,
      "weekly_gmv": 569798,
      "weekly_orders": 2483,
      "link": "https://stockx.pvxt.net/nike-dunk-high-wu-tang-2024",
      "trending": false,
      "variants": [
        {
          "size": "11",
          "price": 178
        },
        /* ... */
      ]
    },
    /* ... */
  ],
  "meta": {
    "total": 184427,
    "total_pages": 9222
  }
}

This endpoint has been migrated to use v3 database. The following fields will always return null:

  • blurhash
  • gender
  • weekly_gmv

Search query. This will search within the product title, SKU, brand and colorway with higher weights on titre and SKU.

ids
string

Takes a list of ID, comma-separated. This is a exact match search.

url_key
string

Find product by URL Key from StockX, this is a exact match search. This is the slug of the product on StockX, example: https://stockx.com/nike-dunk-high-wu-tang-2024 -> nike-dunk-high-wu-tang-2024.

sku
string

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

gtin
string

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


Example: 000111222333 will be matched with 111222333 or 111222.

Get only the trending products from the last 24 hours.

brand
string

Find products by brand.

size
string

Find a product that has a variant with this size.


Note: This is a exact match search and it’s only available when used with under_price.

category
string

Find products by category.

Categories availables:

  • apparel
  • baseball
  • basketball
  • collectibles
  • handbags
  • skateboards
  • sneakers
  • soccer
  • watches
under_price
number

Find products with a variant under this price.


Note: This is a less than match and it’s only available when used with size.

sort
string

By default, products are sorted by weekly rank (number of orders), if there is a search query, the results are sorted by relevance.

date and rank are the only available sorting options for non-search requests.

It’s not possible to sort by ASC or DESC for now.

page
integer

Page, limited by 20 products per page.

By encapsulating the query in quotes, you can search an exact phrase. For example, "adidas Forum Low".

{
  "status": "success",
  "error": "",
  "message": "",
  "query": {},
  "data": [
    {
      "id": "bcb8b592-18c7-4354-82d7-732941e1d17a",
      "slug": "nike-dunk-high-wutang-2024-bcb8b",
      "title": "Nike Dunk High Wu-Tang (2024)",
      "description": "The Nike Dunk High Wu-Tang (2024) brings back one of the most legendary sneaker collaborations in history. First released in 1999, the original Wu-Tang Dunk High was one of the earliest examples of a sneaker partnership with a music group, setting the stage for the future of sneaker culture. Finished in the Wu-Tang Clan's signature black and goldenrod color scheme, this 2024 retro release stays true to the original with its bold, eye-catching design. The custom Wu-Tang logo on the heel and tongue label remains an iconic detail, paying tribute to the group's legacy.<br><br>The Wu-Tang Dunk High features a premium leather upper in striking black and yellow, giving the sneaker a high-quality look and feel. Its classic high-top design offers support and comfort, making it perfect for both casual wear and street style. The sneaker’s retro roots, combined with the Wu-Tang Clan’s influence on music and culture, make this an essential addition for fans of both hip-hop and sneaker culture. Nike’s return of this historic design is sure to draw significant attention from collectors and enthusiasts alike.<br><br>Released on September 28, 2024, the Nike Dunk High Wu-Tang retailed for $150. This limited-edition sneaker is not just a piece of footwear—it’s a cultural artifact that celebrates the intersection of music and fashion, making it one of the year’s most highly anticipated releases.",
      "brand": "Nike",
      "category": "sneakers",
      "color": "Black/Pollen/White",
      "sku": "HJ4320-001",
      "gender": "male",
      "image": "https://images.stockx.com/images/Nike-Dunk-High-Wu-Tang-2024-Product.jpg",
      "avg_price": 210.5,
      "min_price": 149,
      "max_price": 299,
      "currency": "USD",
      "release_date": "2024-11-09",
      "retail_price": 150,
      "retail_currency": "USD",
      "weekly_rank": 1,
      "weekly_aov": 229,
      "weekly_gmv": 569798,
      "weekly_orders": 2483,
      "link": "https://stockx.pvxt.net/nike-dunk-high-wu-tang-2024",
      "trending": false,
      "variants": [
        {
          "size": "11",
          "price": 178
        },
        /* ... */
      ]
    },
    /* ... */
  ],
  "meta": {
    "total": 184427,
    "total_pages": 9222
  }
}