List Search
GET
/store/search
const url = 'http://localhost:9000/store/search?q=&limit=12';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 'http://localhost:9000/store/search?q=&limit=12'Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ” q
string
limit
string
Responses
Section titled “ Responses ”OK
Media type application/json
object
Example generated
{}