Description
ZIPCODES provides a RESTful API to lookup USPS information about a particular zip code. This function only supports US zip codes.
Learn more about ZIP codes.
Endpoint
https://zipcodes.handyfunctions.com/
Method
POST
Request Headers
content-type: application/json
Body
{
"zipcode":"63633"
}
Example Input
curl --location 'https://zipcodes.handyfunctions.com' \
--header 'content-type: application/json' \
--data '{
"zipcode":"63633"
}'
Example Output
[
{
"AREA_NAME": "CENTRAL",
"AREA_CODE": "4J",
"DISTRICT_NAME": "KS-MO",
"DISTRICT_NO": "630",
"DELIVERY_ZIPCODE": "63633",
"LOCALE_NAME": "CENTERVILLE",
"PHYSICAL_DELVADDR": "2312 GREEN ST",
"PHYSICAL_CITY": "CENTERVILLE",
"PHYSICAL_STATE": "MO",
"PHYSICAL_ZIP": "63633",
"PHYSICAL_ZIPPLUS4": "9998"
}