Belize Postal Service tracking URL from a tracking number
Belize Postal Service (BZ) tracking numbers follow this format: S10 format ending in BZ. ShipShim detects the carrier from the number and returns the direct tracking link.
Example: number in, tracking URL out
| Example tracking number | RR231885979BZ |
|---|---|
| Tracking URL | https://www.belizepostalservice.gov.bz/ |
This format is distinctive, so ShipShim identifies Belize Postal Service from the bare number — no hints needed.
Get the Belize Postal Service tracking link via API
curl -X POST https://shipshim.com/api/v1/track \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"tracking_number": "RR231885979BZ"}'
Response:
{
"tracking_number": "RR231885979BZ",
"carrier": "Belize Postal Service",
"country": "BZ",
"tracking_url": "https://www.belizepostalservice.gov.bz/",
"confidence": 100,
"matches": [
{
"carrier": "Belize Postal Service",
"country": "BZ",
"confidence": 100,
"tracking_url": "https://www.belizepostalservice.gov.bz/"
}
]
}
Get a free API key Read the API reference — the free tier includes 100 calls/month.