Trial
We have a trial endpoint that does a text query search with 5 responses. This is meant to be a way to test out our API to test the speed, performance, and results.
cURL Request
You can test our API with the following command:
curl 'https://zues.searchagora.com/api/v1/search/trial?q={SearchQuery}'For example, you can try:
curl 'https://zues.searchagora.com/api/v1/search/trial?q=red%20shoes'Search trial
GET /search/trial
This endpoint provides a trial version of the product search feature. You can search for products with fewer parameters.
Headers
No headers required.
Query parameters
q
string
Search query.
priceRange
array
Price range filter [minPrice, maxPrice].
sort
string
Sorting field: price:relevance.
order
string
Sorting order: asc or desc.
Example request
GET https://zues.searchagora.com/api/v1/search/trial?q=query&priceRange=[100,1000]&sort=price:relevance&order=desc
Response
Last updated
Was this helpful?