East Timor Postal Code API

Look up postal codes in East Timor with PostalDataPI — sub-5ms responses, one API key for 240+ countries and territories.

Country Code

TL

Format

varies

Example

000

About East Timor postal codes

Timor-Leste (East Timor) uses postal codes for its 13 municipalities. Dili, the capital, is the primary postal hub. As one of the world's youngest nations (independent since 2002), the postal system is still developing alongside the country's broader infrastructure.

Local term: postal code | Regex pattern: ^.+$

API Usage Examples

cURL

curl -X POST https://postaldatapi.com/api/lookup \
  -H "Content-Type: application/json" \
  -d '{"zipcode": "000", "country": "TL", "apiKey": "YOUR_API_KEY"}'

Python

from postaldatapi import PostalDataPI

client = PostalDataPI(api_key="YOUR_API_KEY")
result = client.lookup("000", country="TL")
print(result.place_name, result.latitude, result.longitude)

Node.js

import { PostalDataPI } from 'postaldatapi';

const client = new PostalDataPI({ apiKey: 'YOUR_API_KEY' });
const result = await client.lookup('000', { country: 'TL' });
console.log(result.placeName, result.latitude, result.longitude);

$0.000028 per query

Same price for East Timor and all 240+ countries and territories. No tiers, no per-country pricing.

East Timor Postal Code API | PostalDataPI