La Poste tracking URL from a tracking number
La Poste (FR) tracking numbers follow this format: 13-15 alphanumeric, or S10 format ending in FR. ShipShim detects the carrier from the number and returns the direct tracking link.
Example: number in, tracking URL out
| Example tracking number | RR830615472FR |
|---|---|
| Tracking URL | https://www.laposte.fr/outils/suivre-vos-envois?code=RR830615472FR |
This format is distinctive, so ShipShim identifies La Poste from the bare number — no hints needed.
Get the La Poste 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": "RR830615472FR"}'
Response:
{
"tracking_number": "RR830615472FR",
"carrier": "La Poste",
"country": "FR",
"tracking_url": "https://www.laposte.fr/outils/suivre-vos-envois?code=RR830615472FR",
"confidence": 100,
"matches": [
{
"carrier": "La Poste",
"country": "FR",
"confidence": 100,
"tracking_url": "https://www.laposte.fr/outils/suivre-vos-envois?code=RR830615472FR"
}
]
}
Get a free API key Read the API reference — the free tier includes 100 calls/month.