
Zip & Postal Code API
Look up postal/ZIP codes for ~100 countries — place name, state/province, county, and geographic coordinates. Search forward by code, or reverse by place name. Backed by the GeoNames postal dataset (~1.5M codes).
Available Endpoints
Request Parameters
API URL
Please subscribe to see the API URL
Headers
X-Api-Key
Query Parameters
code(Required)
country(Required)
Please subscribe to see the actual API URL
import axios from 'axios';
const url = '{API_URL}';
const { data } = await axios.get(url, {
headers: { 'X-Api-Key': 'YOUR_API_KEY' }
});