Only $1.50/1k: Norwegian Postalcode -> City/Municipality
Pricing
from $1.50 / 1,000 zip codes
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
Actor stats
0
Bookmarked
2
Total users
1
Monthly active users
2 days ago
Last modified
Categories
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
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
postalcodes | array | Yes | - | List of Norwegian postal codes (zip codes) to resolve (4-digit) |
Output Fields
| Field | Type | Description |
|---|---|---|
postalcode | string | 4-digit Norwegian postal code |
city | string | City/place name |
municipality_code | string | 4-digit municipality code |
municipality_name | string | Municipality name |
category | string | Category code (see below) |
error | null/string | Error message if lookup failed |
Category Codes
| Code | Description |
|---|---|
P | PO Box (Postboks) |
B | Business address (Bedrift) |
G | Street address (Gate/vei) |
S | Service postal code |
Pricing
| Cost | Description |
|---|---|
| $0.0001 / start | Charged per actor run |
| $0.50 / 1,000 postal codes | Charged per postal code returned |
API Integration
Python
from apify_client import ApifyClientclient = 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)