Skip to main content
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.
id
integer
required
Province ID
name
string
required
Province name
area_sq_km
string
required
Area in square kilometers
website
string
required
Province website URL
headquarter
string
required
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"
  }
]

Build docs developers (and LLMs) love