curl -X GET https://your-app-url/api/provinces/
GET /api/provinces/
Returns a list of all provinces in Nepal with their administrative information including area, website, and headquarters.
Response
Returns an array of province objects.
Area in square kilometers
Province headquarter city
Response Example
[
{
"id": 1,
"name": "Koshi Province",
"area_sq_km": "25905",
"website": "https://koshi.gov.np",
"headquarter": "Biratnagar"
},
{
"id": 2,
"name": "Madhesh Province",
"area_sq_km": "9661",
"website": "https://madhesh.gov.np",
"headquarter": "Janakpur"
},
{
"id": 3,
"name": "Bagmati Province",
"area_sq_km": "20300",
"website": "https://bagamati.gov.np",
"headquarter": "Hetauda"
}
]