School Management System

Welcome to the School Management System API

Available Routes: Click on the links to view the request in postman

Add School Example:

Insert the below data in the body of the request

        POST /addSchool
        {
            "name": "ABCD ACADEMY",
            "address": "XYZ Lane, ABC City",
            "latitude": 123.456,
            "longitude": 78.901
        }
    

List Schools (sorted by distance) Example:

        GET /listSchools?latitude=123.456&longitude=78.901