Skip to main content

Get Local Government Areas

base_url: https://firseinvoice.etranzactng.com/

Description:: This endpoint returns a list of Local Government Areas and their corresponding codes.

Sample Request

GET {base_url}/api/v1/resource/lgas
curl ` {base_url}/api/v1/resource/lgas`
-H "X-API-Key: {{CLIENT_API_KEY}}"
-H "X-API-Signature: {{HMAC_SHA256_SIGNATURE}}"
-H "X-API-Timestamp: {{ISO_20022_TIMESTAMP}}"
'

Sample Response

POST {base_url}/api/v1/resource/lgas
{
"status": 200,
"message": "Local Government Areas fetched successfully",
"data": [
{
"name": "Irepodun/Ifelodun",
"code": "NG-EK-IRE",
"state_code":"NG_EK"
},
{
"name": "IbionoIbom",
"code": "NG-AK-IIB",
"state_code": "NG-AK"
},
{
"name": "UghelliSouth",
"code": "NG-DE-USO",
"state_code": "NG-DE"
}
],
"execTime": 1.27868,
"error": ""
}