South Africa Post tracking URL from a tracking number
South Africa Post (ZA) tracking numbers follow this format: S10 format ending in ZA. ShipShim detects the carrier from the number and returns the direct tracking link.
Example: number in, tracking URL out
| Example tracking number | RR706903918ZA |
|---|---|
| Tracking URL | https://www.postoffice.co.za/track/RR706903918ZA |
This format is distinctive, so ShipShim identifies South Africa Post from the bare number — no hints needed.
Get the South Africa Post 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": "RR706903918ZA"}'
Response:
{
"tracking_number": "RR706903918ZA",
"carrier": "South Africa Post",
"country": "ZA",
"tracking_url": "https://www.postoffice.co.za/track/RR706903918ZA",
"confidence": 100,
"matches": [
{
"carrier": "South Africa Post",
"country": "ZA",
"confidence": 100,
"tracking_url": "https://www.postoffice.co.za/track/RR706903918ZA"
}
]
}
Get a free API key Read the API reference — the free tier includes 100 calls/month.