Skip to main content

Get State Codes

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/states
curl ` {base_url}/api/v1/resource/states`
-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/states
{
"status": 200,
"message": "State fetched successfully",
"data": [
{
"name": "Anambra",
"code": "NG-AK"
},
{
"name": "Ondo",
"code": "NG-ON"
},
{
"name": "Rivers",
"code": "NG-RI",
}
],
"execTime": 1.27868,
"error": ""
}