diff --git a/README.md b/README.md index 202ea4a..7e188f5 100644 --- a/README.md +++ b/README.md @@ -118,6 +118,7 @@ Nebeng is a ride-sharing app designed specifically for students, providing an ef ## API Endpoints 📡 - **Login:** + - Endpoint: `/login` - Method: `POST` - Request Body: @@ -128,4 +129,25 @@ Nebeng is a ride-sharing app designed specifically for students, providing an ef } ``` +- **Nearby-Locations:** + + - Endpoint: `/nearby-locations` + - Method: `GET` + - Request params: + ``` + lat: 37.7749 + lng: -122.4194 + radius: 5000 + type: restaurant + ``` + +- **Detail-Location:** + - Endpoint: `/getDetailLocation` + - Method: `GET` + - Request params: + ``` + lat: 37.7749 + lon: -122.4194 + ``` + ---