A guide to help you migrate from KicksDB v2 to v3.
/api/v2/products/
/api/v3/stockx/products/
search
is now query
url_key
is now slugs
under_price
is now max_price
sort
accepts rank
and release_date
(instead of date
)trending
category
Product
Old | New | Note |
---|---|---|
id | id | |
slug | slug | This is now the same StockX URL key. |
title | title | |
brand | brand | |
description | description | |
color | traits.*.value | Must be matched with a trait of Colorway |
sku | sku | |
image | image | |
avg_price | avg_price | |
min_price | min_price | |
max_price | max_price | |
currency | - | Removed, all prices are in USD |
release_date | traits.*.value | Must be matched with a trait of Release Date |
retail_price | traits.*.value | Must be matched with a trait of Retail Price |
weekly_rank | rank | |
weekly_orders | weekly_orders | |
link | link | |
variants | variants | Structure changed, see Variants section below |
Variant
Old | New | Note |
---|---|---|
size | size | |
price | lowest_ask | Renamed to better reflect the price meaning |
- | size_type | New field, typically “us m” for US Men’s |
- | total_asks | New field showing number of asks available |
- | id | New unique identifier for the variant |
- | product_id | New field referencing parent product |
- | updated_at | New timestamp of last price update |
/api/v2/products/{id}
/api/v3/stockx/products/{id}
id
is the same as the id
parameter in the search endpoint.display[*]
parameters allowing you to control what data you want to receive. Requesting less data will make the response faster.
display[traits]
: Include traits in the response.display[variants]
: Include variants in the response.display[sizes]
: Include sizes conversions in the response.display[identifiers]
: Include identifiers (barcodes) in the response.display[asks]
: Include asks in the response.display[goat]
: Include GOAT product in the response (if found).display[stadium_goods]
: Include Stadium Goods product in the response (if found).display[kickscrew]
: Include Kickscrew product in the response (if found).