Skip to content

Get addresses by province and district, quickly and accurately. Ideal for developers and users seeking specific address data.

Notifications You must be signed in to change notification settings

bimalstha23/Nepal-Address-API

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Nepal-Address-API

Get addresses by province and district, quickly and accurately. Ideal for developers and users seeking specific address data.

API Documentation

This documentation provides information about the available API endpoints and their usage.

Get Provinces

  • Endpoint: /provinces
  • HTTP Method: GET
  • Description: Retrieve a list of provinces.

Example Request:

GET /provinces

Example Response:

{
    "provinces": [
        "bagmati",
        "sudurpaschim",
        "lumbini",
        "pradesh-1",
        "madhesh",
        "gandaki",
        "karnali"
    ]
}

Get Districts by Province

  • Endpoint: /districts/:province
  • HTTP Method: GET
  • Description: Retrieve a list of districts within a specific province.

Parameters:

  • province (URL parameter) - The name of the province for which you want to retrieve districts.

Example Request:

GET /districts/bagmati

Example Response:

{
    "districts": [
        "sindhuli",
        "ramechhap",
        "dolakha",
        "bhaktapur",
        "dhading",
        "kathmandu",
        "kavrepalanchok",
        "lalitpur",
        "nuwakot",
        "rasuwa",
        "sindhupalchok",
        "chitwan",
        "makwanpur"
    ]
}

Get Municipals by District

  • Endpoint: /municipals/:district
  • HTTP Method: GET
  • Description: Retrieve a list of municipalities within a specific district.

Parameters:

  • district (URL parameter) - The name of the district for which you want to retrieve municipalities.

Example Request:

GET /municipals/kathmandu

Example Response:

{
    "municipals": [
        "kirtipur municipality",
        "shankharapur municipality",
        "nagarjun municipality",
        "kageshwori manahora municipality",
        "dakshinkali municipality",
        "budhanilakantha municipality",
        "tarakeshwor municipality",
        "kathmandu metropolitian city",
        "tokha municipality",
        "chandragiri municipality",
        "gokarneshwor municipality"
    ]
}

About

Get addresses by province and district, quickly and accurately. Ideal for developers and users seeking specific address data.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Languages