Skip to content
StockX Logo

StockX API

Embark on a journey through the expansive realm of sneakers with the StockX API - your doorway to an all-encompassing, high-performance sneaker database. Effortlessly navigate through thousands of products, gaining intricate details on each pair. Whether you're a developer crafting a cutting-edge sneaker app, a retailer integrating stock data, or a passionate sneaker enthusiast tracking market trends, the StockX API offers a frictionless and cost-free solution.

-> We are on RapidAPI!

Key Features

  1. Extensive Sneaker Database: Immerse yourself in a vast collection of sneakers within the StockX database, encompassing diverse brands, models, and styles.

  2. High Performance: Enjoy the swiftness of lightning-fast search and retrieval of product information, ensuring optimal performance for your applications.

  3. Daily Updates: Stay ahead of the curve with daily updates, ensuring real-time access to the latest data on sneaker prices, availability, and market trends.

  4. Free Access: Experience the advantages of the StockX API without any cost, providing a budget-friendly solution for developers, businesses, and enthusiasts alike.

  5. Effortless Integration: Seamlessly incorporate StockX data into your applications, websites, or platforms using straightforward API endpoints, simplifying the implementation process.

Unlock the full potential of the StockX API to enhance your projects, streamline operations, and stay informed about the dynamic world of sneakers. Immerse yourself in the realm of sneaker data with this powerful, free tool that evolves with the latest trends in the market.

Base endpoint

All endpoints are prefixed with this base endpoint.

  • No authentication is required.
  • No rate limiting is applied.
bash
https://api.stockx.vlour.me

Search for a product

Every fields are indexed and searchable. You can search for a product by brand, model, style, or any other field. Use quotes to search for an exact match.

Query string parameters

  • query - The search query. This can be a brand, model, or style. - Required
  • page - The page number to return. - Optional - Default: 1

Normal searching

bash
curl -X 'GET' \
  -H 'accept: */*' \
   'https://api.stockx.vlour.me/search?query=Adidas Forum'

Exact searching

bash
curl -X 'GET' \
  -H 'accept: */*' \
   'https://api.stockx.vlour.me/search?query="Adidas Forum"' 
                                          # ^ Notice the quotes

Example response

json
{
  "hits": [
    {
      "id": "01c1af38-d1d0-462c-aca3-13349dc893a9",
      "title": "adidas Forum Exhibit Low Off White Shadow Navy",
      "link": "https://stockx.com/adidas-forum-exhibit-low-off-white-shadow-navy?country=US&currencyCode=USD",
      "description": null,
      "category": "Apparel & Accessories > Shoes",
      "image": "https://images.stockx.com/images/adidas-Forum-Exhibit-Low-Off-White-Shadow-Navy-Product.jpg",
      "gtin": "749988966150",
      "brand": "adidas",
      "gender": "male",
      "age_group": "adult",
      "base_price": 99,
      "currency": "USD",
      "variants": [
        {
          "size": "8.5",
          "price": 99,
          "currency": "USD"
        },
        {
          "size": "10",
          "price": 87,
          "currency": "USD"
        },
        /* ... truncated ... */
      ],
      "labels": [
        "sneakers",
        "adidas Forum",
        "GX4121"
      ]
    },
    /* ... truncated ... */
  ],
  "pages": 21,
  "processing_time_ms": 12,
  "query": "\"Adidas Forum\""
}

Get a product by ID

Get a product by its ID. This ID (in UUID format) is compatible with StockX's API.

Path parameters

  • id - The product ID. - Required

Example request

bash
curl -X 'GET' \
  -H 'accept: */*' \
   'https://api.stockx.vlour.me/product/01c1af38-d1d0-462c-aca3-13349dc893a9'

Example response

json
{
    "id": "01c1af38-d1d0-462c-aca3-13349dc893a9",
    "title": "adidas Forum Exhibit Low Off White Shadow Navy",
    "link": "https://stockx.com/adidas-forum-exhibit-low-off-white-shadow-navy?country=US&currencyCode=USD",
    "description": null,
    "category": "Apparel & Accessories > Shoes",
    "image": "https://images.stockx.com/images/adidas-Forum-Exhibit-Low-Off-White-Shadow-Navy-Product.jpg",
    "gtin": "749988966150",
    "brand": "adidas",
    "gender": "male",
    "age_group": "adult",
    "base_price": 99,
    "currency": "USD",
    "variants": [
        {
            "size": "8.5",
            "price": 99,
            "currency": "USD"
        }
        /* ... truncated ... */
    ],
    "labels": [
        "sneakers",
        "adidas Forum",
        "GX4121"
    ]
}

Get total count of products

Get the total count of products in the database.

Example request

bash
curl -X 'GET' \
  -H 'accept: */*' \
   'https://api.stockx.vlour.me/stats'

Example response

json
{
    "count": 157201
}

Managed by vlour.me - GitHub