Guinea Bissau Postal Code API

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

Country Code

GW

Format

varies

Example

1021

About Guinea Bissau postal codes

Guinea-Bissau uses 4-digit postal codes. Bissau, the capital, is the primary postal hub. This small West African nation's postal system, inherited from Portuguese colonial administration, covers the mainland and the Bijagos archipelago of 88 islands.

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": "1021", "country": "GW", "apiKey": "YOUR_API_KEY"}'

Python

from postaldatapi import PostalDataPI

client = PostalDataPI(api_key="YOUR_API_KEY")
result = client.lookup("1021", country="GW")
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('1021', { country: 'GW' });
console.log(result.placeName, result.latitude, result.longitude);

$0.000028 per query

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

Guinea Bissau Postal Code API | PostalDataPI