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