GET
/
v3
/
realtime
/
stockx
/
products
/
{id}
/
related
curl --request GET \
  --url https://api.kicks.dev/v3/realtime/stockx/products/{id}/related \
  --header 'Authorization: <api-key>'
{
  "status": "success",
  "query": {},
  "data": [
    {
      "node": {
        "brand": "Nike",
        "id": "8eaf1af5-672a-4d39-8bf8-1f80ca1d714a",
        "listingType": "STANDARD",
        "market": {
          "salesInformation": {
            "lastSale": 275,
            "salesLast72Hours": 6
          },
          "state": {
            "highestBid": {
              "amount": 390
            },
            "lowestAsk": {
              "amount": 240
            },
            "numberOfAsks": 298,
            "numberOfBids": 172
          }
        },
        "media": {
          "thumbUrl": "https://images.stockx.com/images/Nike-Air-Max-1-Travis-Scott-Baroque-Brown-Product.jpg?fit=fill&bg=FFFFFF&w=140&h=100&fm=webp&auto=compress&q=90&dpr=2&trim=color&updated_at=1738193358"
        },
        "primaryTitle": "Nike Air Max 1",
        "productCategory": "sneakers",
        "secondaryTitle": "Travis Scott Cactus Jack Baroque Brown",
        "title": "Nike Air Max 1 Travis Scott Cactus Jack Baroque Brown",
        "urlKey": "nike-air-max-1-travis-scott-baroque-brown"
      }
    }
    /* ... */
  ],
  "meta": {
    "execution_time": 941
  }
}

Notice

This endpoint allows 120 requests per minute per API key. It’s recommended to use non-realtime data first, and then use this endpoint if you need real-time data. Read more

Membership

This endpoint is available in the pro tier.

Path parameters

id
string
required

The StockX UUID or slug of the product.

Parameters

country
string
default:"US"

The country to retrieve market data for.

currency
string
default:"USD"

The currency to retrieve market data in.

market
string
default:"US"

The market to retrieve market data for.

{
  "status": "success",
  "query": {},
  "data": [
    {
      "node": {
        "brand": "Nike",
        "id": "8eaf1af5-672a-4d39-8bf8-1f80ca1d714a",
        "listingType": "STANDARD",
        "market": {
          "salesInformation": {
            "lastSale": 275,
            "salesLast72Hours": 6
          },
          "state": {
            "highestBid": {
              "amount": 390
            },
            "lowestAsk": {
              "amount": 240
            },
            "numberOfAsks": 298,
            "numberOfBids": 172
          }
        },
        "media": {
          "thumbUrl": "https://images.stockx.com/images/Nike-Air-Max-1-Travis-Scott-Baroque-Brown-Product.jpg?fit=fill&bg=FFFFFF&w=140&h=100&fm=webp&auto=compress&q=90&dpr=2&trim=color&updated_at=1738193358"
        },
        "primaryTitle": "Nike Air Max 1",
        "productCategory": "sneakers",
        "secondaryTitle": "Travis Scott Cactus Jack Baroque Brown",
        "title": "Nike Air Max 1 Travis Scott Cactus Jack Baroque Brown",
        "urlKey": "nike-air-max-1-travis-scott-baroque-brown"
      }
    }
    /* ... */
  ],
  "meta": {
    "execution_time": 941
  }
}