API Endpoints
GET /provinces
Retrieve a list of all provinces.
https://nepaladdress.notedinsights.com/api/provinces
GET /districts
Retrieve a list of all districts.
https://nepaladdress.notedinsights.com/api/districts
GET /districts/{provinceName}
Retrieve districts filtered by a specific province name.
https://nepaladdress.notedinsights.com/api/districts/{provinceName}
GET /municipals/{districtName}
Retrieve municipalities filtered by a specific district name.
https://nepaladdress.notedinsights.com/api/municipals/{districtName}
How to Use
Send HTTP GET requests to the endpoints above to retrieve JSON data. Use the
provided routes to access province, district, and municipal data efficiently. For example, to get
districts for a specific province, replace {provinceName} with the desired province name in
the URL.
Laravel Examples:
$response =
Http::get('https://nepaladdress.notedinsights.com/api/provinces');
$response =
Http::get('https://nepaladdress.notedinsights.com/api/districts');
$response =
Http::get('https://nepaladdress.notedinsights.com/api/districts/bagmati');
$response =
Http::get('https://nepaladdress.notedinsights.com/api/municipals/chitwan');