This event is triggered when the USD price of a variant in US market changes.

Event specification

  • data will contain an array of variants that have had their price updated. A single webhook can contain variants from multiple products.
  • sizes will contain an array of every size with conversion information.
  • subtotal will contain the price of the variant with shipping and StockX-fees included, it’s represented as a JSON object with the key being the shipping option and the value being the price.

Payload

{
  "event": "stockx.price.updated.usd",
  "timestamp": 1740384474,
  "version": "v1",
  "data": [
    {
      "product_id": "d0071024-6182-464c-8526-2c2ebcab4ba4",
      "name": "Fear of God Essentials Sweatshort Mint Leaf",
      "slug": "fear-of-god-essentials-sweatshort-mint-leaf",
      "sku": "160SP242002F",
      "variant_id": "2aa779f4-3fb6-42dd-9004-9a51e8576e36",
      "sizes": [{ "size": "US XXS", "type": "us" }],
      "lowest_ask": 69.0,
      "subtotal": { "STANDARD": 88.9 },
      "currency": "USD"
    },
    {
      "product_id": "d0071024-6182-464c-8526-2c2ebcab4ba4",
      "name": "Fear of God Essentials Sweatshort Mint Leaf",
      "slug": "fear-of-god-essentials-sweatshort-mint-leaf",
      "sku": "160SP242002F",
      "variant_id": "a5eb8f45-15bc-40b7-afbd-5c442deed365",
      "sizes": [{ "size": "US XS", "type": "us" }],
      "lowest_ask": 70.0,
      "subtotal": { "STANDARD": 89.9 },
      "currency": "USD"
    },
    {
      "product_id": "d0071024-6182-464c-8526-2c2ebcab4ba4",
      "name": "Fear of God Essentials Sweatshort Mint Leaf",
      "slug": "fear-of-god-essentials-sweatshort-mint-leaf",
      "sku": "160SP242002F",
      "variant_id": "42c98a0e-59bd-4e78-8654-054e9573f4f8",
      "sizes": [{ "size": "US S", "type": "us" }],
      "lowest_ask": 96.0,
      "subtotal": {
        "STANDARD": 115.9,
        "EXPRESS_STANDARD": 118.9,
        "EXPRESS_EXPEDITED": 123.9
      },
      "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.