GET /zipcode/reverse
Finden Sie alle postal/zip codes for a given city, state, und country. The reverse of a postal code lookup - you provide the location und get back matching postal codes. Nützlich für generating postal code lists for delivery zone mapping, populating postal code fields from known city names, und building geographic coverage analysis tools.
country
erforderlich
Country
state
erforderlich
State
city
erforderlich
City
| Name | Erforderlich | Standard | Beschreibung |
|---|---|---|---|
country |
Ja | - | Country |
state |
Ja | - | State |
city |
Ja | - | City |
curl "https://nordapi.ee/api/v1/zipcode/reverse?country=us&state=CA&city=Beverly+Hills"
curl "https://nordapi.ee/api/v1/zipcode/reverse?country=us&state=CA&city=Beverly+Hills"
curl "https://nordapi.ee/api/v1/zipcode/reverse?country=de&state=Berlin&city=Berlin"
curl "https://nordapi.ee/api/v1/zipcode/reverse?country=no&state=Oslo&city=Oslo"
{
"data": {
"city": "Beverly Hills",
"country": "United States",
"places": [
{
"latitude": "33.7866",
"longitude": "-118.2987",
"name": "Beverly Hills",
"zip": "90209"
},
{
"latitude": "34.0901",
"longitude": "-118.4065",
"name": "Beverly Hills",
"zip": "90210"
},
{
"latitude": "34.0652",
"longitude": "-118.383",
"name": "Beverly Hills",
"zip": "90211"
},
{
"latitude": "34.0619",
"longitude": "-118.3995",
"name": "Beverly Hills",
"zip": "90212"
},
{
"latitude": "33.7866",
"longitude": "-118.2987",
"name": "Beverly Hills",
"zip": "90213"
}
],
"state": "CA"
},
"success": true
}