Skip to main content
GET
/
api
/
v1
/
shared
/
location
/
lga
/
{stateId}
Get LGAs in State
curl --request GET \
  --url https://api.getscale.ng/api/v1/shared/location/lga/{stateId}
{
  "status": "success",
  "data": [
    {
      "id": 450,
      "name": "Ikeja",
      "stateId": 25
    },
    {
      "id": 451,
      "name": "Surulere",
      "stateId": 25
    }
  ]
}
Retrieves all Local Government Areas mapped inside a specific State.

Path Parameters

stateId
number
required
The state database ID.
{
  "status": "success",
  "data": [
    {
      "id": 450,
      "name": "Ikeja",
      "stateId": 25
    },
    {
      "id": 451,
      "name": "Surulere",
      "stateId": 25
    }
  ]
}