Full-text product search (no auth, rate-limited)
GET
/store/v1/search
const url = 'https://your-store.example.com/store/v1/search?q=&minPrice=0&maxPrice=0&sort=relevance&page=1&pageSize=20';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'https://your-store.example.com/store/v1/search?q=&minPrice=0&maxPrice=0&sort=relevance&page=1&pageSize=20'Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ” q
string
category
string
tag
string
minPrice
integer
maxPrice
integer
currency
string
sort
string
page
integer
pageSize
integer