We have built a data aggregator website that is aimed towards automotive SME's. The goal is to act as gateway to help build them build digital social presence with ease using our chatbot services.
curl -X POST -H "Content-Type: application/json" -d '{
"shopId": "1",
"shopName": "ImpactHack Shop",
"latitude": 51.1234,
"longitude": -0.9876,
"products": [
{ "name": "Side Mirrors", "category": "Exterior" },
{ "name": "Engine Oil", "category": "Maintenance" },
{ "name": "Spark Plugs", "category": "Ignition" },
{ "name": "Air Filter", "category": "Filters" },
{ "name": "Brake Pads", "category": "Brakes" }
]
}' https://localhost:8000/shops
curl https://localhost:8000/search/Side%20Mirrors
curl https://localhost:8000/shop/1/categories
curl https://localhost:8000/categories
curl https://localhost:8000/shops/range/51.1234/-0.9876/5
The search function is an controller that searches for shops based on the specified search criteria.
Request The search function expects a GET request with the following query parameters:
- latitude (required): The latitude of the user's location.
- longitude (required): The longitude of the user's location.
- radius (optional): The search radius in kilometers (default is 10km).
- category (optional): The category of the shops to search for.
- name (optional): The name of the shops to search for.
- sortby (optional): The field to sort the search results by, possible values distance, rating, reliability (default is distance).
- pay_by_card (optional): Whether the shop accepts card payments.
- product (optional): The product to search for.
- brand (optional): The brand to search for.
curl 'https://localhost:8000/search?longitude=101.7309175&latitude=3.223186&radius=10&sortby=distance&brand=bmw&pay_by_card=1'