Only $1.50/1k: Norwegian Postalcode -> City/Municipality avatar

Only $1.50/1k: Norwegian Postalcode -> City/Municipality

Pricing

from $1.50 / 1,000 zip codes

Go to Apify Store
Only $1.50/1k: Norwegian Postalcode -> City/Municipality

Only $1.50/1k: Norwegian Postalcode -> City/Municipality

Only $1.50/1k: Convert Norwegian postal codes into location data including city and municipality effortless.

Pricing

from $1.50 / 1,000 zip codes

Rating

0.0

(0)

Developer

Zen Studio

Zen Studio

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

Share

Get location data including city and municipality from Norwegian postal codes (zip codes).

Simply provide a list of postal codes and get back structured location data for each one.

No login required. No cookies needed. Pay-per-event pricing.

Why Choose This Actor?

"Enrich your data with Norwegian location information in seconds"

Our Norway Postal Code / Zip Code Search provides:

  • Very Fast Responses: Parallel processing (up to 4 concurrent requests) for large batches
  • Cost-Effective: Pay only for the postal codes you need: $0.50 / 1k postal codes
  • Complete Data: Get city, municipality code, municipality name, and category

Usage Examples

Resolve a Single Postal Code

{
"postalcodes": ["0001"]
}

Resolve Multiple Postal Codes

{
"postalcodes": ["0001", "5003", "7010"]
}

Returns:

{
"postalcode": "0001",
"city": "OSLO",
"municipality_code": "0301",
"municipality_name": "OSLO",
"category": "P",
"error": null
}

Input Parameters

ParameterTypeRequiredDefaultDescription
postalcodesarrayYes-List of Norwegian postal codes (zip codes) to resolve (4-digit)

Output Fields

FieldTypeDescription
postalcodestring4-digit Norwegian postal code
citystringCity/place name
municipality_codestring4-digit municipality code
municipality_namestringMunicipality name
categorystringCategory code (see below)
errornull/stringError message if lookup failed

Category Codes

CodeDescription
PPO Box (Postboks)
BBusiness address (Bedrift)
GStreet address (Gate/vei)
SService postal code

Pricing

CostDescription
$0.0001 / startCharged per actor run
$0.50 / 1,000 postal codesCharged per postal code returned

API Integration

Python

from apify_client import ApifyClient
client = ApifyClient("YOUR_API_TOKEN")
run = client.actor("zen-studio/norwegian-postalcode-to-city-name").call(
run_input={
"postalcodes": ["0001", "5003", "7010", "9990"]
}
)
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
print(f"{item['postalcode']}: {item['city']}, {item['municipality_name']}")

JavaScript

import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: 'YOUR_API_TOKEN' });
const run = await client.actor('zen-studio/norwegian-postalcode-to-city-name').call({
postalcodes: ['0001', '5003', '7010']
});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach(item => {
console.log(`${item.postalcode}: ${item.city}, ${item.municipality_name}`);
});

Use Cases

  • Data Enrichment: Add location data to customer records using postal codes or zip codes
  • Address Validation: Verify Norwegian postal codes (zip codes) exist
  • Geographic Analysis: Map postal codes to municipalities
  • Logistics: Determine delivery regions from zip codes

Going global?

Looking for postal code data in other countries? Check out our other actors:

  • /zen-studio/us-zipcode-to-city-name-state-lat-lng - US ZIP codes (5-digit)
  • /zen-studio/indian-pincode-postalcode-zip-code-to-city-state - Indian PIN codes (6-digit)

Notes

  • Postal codes (zip codes) must be provided as strings (e.g., "0001" not 1)
  • Norwegian postal codes are 4 digits (0001-9991)
  • Invalid or non-existent postal codes will not appear in results
  • Results are returned in no particular order
  • Large requests are automatically chunked (100 postal codes per batch) and processed in parallel (up to 4 concurrent requests)