Queries
Writing queries for KicksDB’s search engine
Since v3.1.20 (2025-06-12) you can now write queries to filter the results. It’s based on Meilisearch’s query syntax, you can read the original documentation here.
Writing queries for StockX endpoints
Currently, the StockX product model is structured as follows:
This page will be updated whenever this structure changes. All fields are filterable, but only name
, description
, model
, slug
, brand
and sku
are searchable.
Currencies and markets can be found here.
Compatible endpoints
Examples
-
Get all products with a price lower than 100 USD for size 11:
You should exclude products with a price of 0 USD, which are not available for sale. Example:
prices.USD_US.11 > 0 AND prices.USD_US.11 < 100
-
Get all products with a price higher than 50 USD for size 9.5:
-
Get products matching barcodes:
-
Get products matching a specific SKU:
-
Complex queries with multiple operators:
Read about all operators here.