← Landfræði og veður

Póstnúmerauppfletting

GET /zipcode/:country/:code

Flettu upp a postal/zip code in 60+ countries to fáðu the associated city, state/province, and geographic hnit. Gefðu upp the landakóða and postal code í slóðinni. Gagnlegt fyrir address validation, auto-filling city and state fields in checkout forms, calculating shipping zones, and mapping postal code regions. Nær yfir the US, Canada, most of Europe, and many aðra countries.

Breytur

country nauðsynlegt

Country code

code nauðsynlegt

Postal code

Dæmi um fyrirspurnir

Grunnnotkun
curl https://nordapi.ee/api/v1/zipcode/us/90210
Beverly Hills zip code (US)
curl https://nordapi.ee/api/v1/zipcode/us/90210
Oslo postal code (Norway)
curl https://nordapi.ee/api/v1/zipcode/no/0150
London postal code (UK)
curl https://nordapi.ee/api/v1/zipcode/gb/SW1A

Lifandi svar

{
  "data": {
    "country": "United States",
    "country_code": "US",
    "places": [
      {
        "latitude": "34.0901",
        "longitude": "-118.4065",
        "name": "Beverly Hills",
        "state": "California",
        "state_code": "CA"
      }
    ],
    "post_code": "90210"
  },
  "success": true
}