Correos Chile tracking URL from a tracking number
Correos Chile (CL) tracking numbers follow this format: S10 format ending in CL. ShipShim detects the carrier from the number and returns the direct tracking link.
Example: number in, tracking URL out
| Example tracking number | RR110357599CL |
|---|---|
| Tracking URL | https://www.correos.cl/web/guest/seguimiento-en-linea?codigos=RR110357599CL |
This format is distinctive, so ShipShim identifies Correos Chile from the bare number — no hints needed.
Get the Correos Chile 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": "RR110357599CL"}'
Response:
{
"tracking_number": "RR110357599CL",
"carrier": "Correos Chile",
"country": "CL",
"tracking_url": "https://www.correos.cl/web/guest/seguimiento-en-linea?codigos=RR110357599CL",
"confidence": 100,
"matches": [
{
"carrier": "Correos Chile",
"country": "CL",
"confidence": 100,
"tracking_url": "https://www.correos.cl/web/guest/seguimiento-en-linea?codigos=RR110357599CL"
}
]
}
Get a free API key Read the API reference — the free tier includes 100 calls/month.