Postal Zone
Get Postal Zone Info
Request
HOST | https://www.postcodefx.com |
GET | /api?rqst=postal_zone_info&postalzonecode=NB&key=YOUR_API_KEY |
Response Fields
Name | Description | Type |
postalZone | The name of the Postal Zone | string |
postalZoneCode | The code for the Postal Zone | string |
total_postal_sectors | The total Number of Sectors in this county | int |
lat_lng | Latitude and Longitude of the Postal Street | string |
JSON Response
{
"response":"success",
"record" : [
{
"postalZone" : "Nairobi",
"postalZoneCode" : "NB",
"total_postal_sector" : 290,
"lat" : "-1.29090900000000000000",
"lng" : "36.86750700000000000000"
}
]
}
Postal Sector
Get Postal Sectors List
Request
HOST | https://www.postcodefx.com |
GET | /api?rqst=postal_sector_list&postalzonecode=NB&key=YOUR_API_KEY |
Response Fields
Name | Description | Type |
postalZone | The name of the Postal Zone | string |
postalSector | The name of the Postal Sector | string |
postalSectorCode | The code of the Postal Sector | string |
lat_lng | Latitude and Longitude of the Postal Street | string |
JSON Response
{
"response":"success",
"list" : [
{
"postalSector" : "STAREHE",
"postalZone" : "NAIROBI",
"postalSectorCode" : "NB16",
"lat" : "0.0",
"lng" : "0.0"
}
]
}
Get Postal Sector Info
Request
HOST | https://www.postcodefx.com |
GET |
/api?rqst=postal_sector_info&postalsectorcode=NB16&key=YOUR_API_KEY |
Response Fields
Name | Description | Type |
postalSector | The name of the Postal Sector | string |
postalSectorCode | The code for the Postal Sector | string |
total_postal_area | The total Number of Postal Areas | int |
JSON Response
{
"response":"success",
"record" : [
{
"postalZone" : "Nairobi",
"postalSector" : "Starehe",
"postalSectorCode" : "NB16",
"total_postal_area" : 0,
"lat" : "0.0",
"lng" : "0.0"
}
]
}
Postal Area
Get Postal Area List
Request
HOST | https://www.postcodefx.com |
GET | /api?rqst=postal_area_list&postalsectorcode=NB16&key=YOUR_API_KEY |
Response Fields
Name | Description | Type |
postalArea | The name of the Postal Area | string |
postalAreaCode | The code for Postal Area | string |
postalZone | The name of the Postal Zone | string |
lat_lng | Latitude and Longitude of the Postal Street | string |
JSON Response
{
"response":"success",
"record" : [
{
"postalArea" : "NAIROBI CENTRAL",
"postalZone" : "NAIROBI",
"postalCode" : "NB16 2",
"lat" : "0.0",
"lng" : "0.0"
}
]
}
Get Postal Area Record
Request
HOST | https://www.postcodefx.com |
GET | /api?rqst=postal_area_info&postalareacode=NB16 1&key=YOUR_API_KEY |
Response Fields
Name | Description | Type |
postalArea | The name of the Postal Area | string |
postalAreaCode | The code of the Postal Area | string |
postalSector | The name of the Postal Sector | string |
postalZone | The name of the Postal Zone | string |
total_postal_street | The total Number of Postal Streets | int |
JSON Response
{
"response":"success",
"streetAddress" : [
{
"postalArea" : "Nairobi Central",
"postalSector" : "Starehe",
"postalZone" : "NAIROBI",
"postalAreaCode" : "NB16 2",
"total_postal_street" : "0"
}
]
}
Postal Address
Get Postal Address List
Request {postalAreaCode}
HOST | https://www.postcodefx.com |
GET | /api?rqst=postal_address_list&postalareacode=NB16 2&key=YOUR_API_KEY |
Get Postal Address Record
Request {postalCode}
HOST | https://www.postcodefx.com |
GET | /api?rqst=postal_address_record&postalcode=NB16 22KS&key=YOUR_API_KEY |
Search Postal Address
Request {General Search}
HOST | https://www.postcodefx.com |
GET | /api?rqst=search_address &q={full or partial postalcode | street and county name} For example: q=NB16 22KS OR q=NB16 2 OR search=Kimathi Street Nairobi &key=YOUR_API_KEY |
Response Fields
Name | Description | Type |
postalStreet | The name of the Postal Street | string |
postalArea | The name of the Postal Area | string |
postalZone | The name of the Postal Zone | string |
postalCode | The Postal Code of a postal street | string |
lat_lng | Latitude and Longitude of the Postal Code | string |
JSON Response
{
"response":"success",
"postalAddress" : [
{
"postalStreet" : "KIMATHI STREET",
"postalArea" : "NAIROBI CENTRAL",
"postalZone" : "NAIROBI",
"postalCode" : "NB16 22KS",
"lat" : "0.0",
"lng" : "0.0"
}
]
}