Sendle tracking URL from a tracking number
Sendle (AU) tracking numbers follow this format: S prefix + alphanumeric (6-10 chars). ShipShim detects the carrier from the number and returns the direct tracking link.
Example: number in, tracking URL out
| Example tracking number | S88888 |
|---|---|
| Tracking URL | https://track.sendle.com/tracking?ref=S88888 |
This format is distinctive, so ShipShim identifies Sendle from the bare number — no hints needed.
Get the Sendle 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": "S88888"}'
Response:
{
"tracking_number": "S88888",
"carrier": "Sendle",
"country": "AU",
"tracking_url": "https://track.sendle.com/tracking?ref=S88888",
"confidence": 100,
"matches": [
{
"carrier": "Sendle",
"country": "AU",
"confidence": 100,
"tracking_url": "https://track.sendle.com/tracking?ref=S88888"
}
]
}
Get a free API key Read the API reference — the free tier includes 100 calls/month.