This event is triggered when the USD price of a product on StockX changes.

Event specification

  • data will contain an array of products that have had their lowest ask price updated. A single webhook can contain products from multiple products.
  • old_lowest_ask will contain the previous lowest ask price.
  • lowest_ask will contain the new lowest ask price.
  • currency will contain the currency of the lowest ask price.

Payload

{
  "event": "stockx.lowest_ask.updated.usd",
  "timestamp": 1742444859,
  "version": "v1",
  "data": [
    {
      "product_id": "ed22fbb8-868d-46ec-8e5d-022e60c50f4f",
      "name": "Nike KD 4 NERF (2024)",
      "slug": "nike-kd-4-nerf-2024",
      "sku": "FQ8180-400",
      "old_lowest_ask": 98.0,
      "lowest_ask": 90.0,
      "currency": "USD"
    }
  ]
}

Response fields

event
string

The event name.

timestamp
number

The timestamp of the event.

version
string

The version of the event.

data
array

The data of the event.