Winit tracking URL from a tracking number
Winit (CN) tracking numbers follow this format: ID prefix + 14 digits + CN or TW. ShipShim detects the carrier from the number and returns the direct tracking link.
Example: number in, tracking URL out
| Example tracking number | ID88888888888888CN |
|---|---|
| Tracking URL | https://track.winit.com/tracking/Index/ |
This format is distinctive, so ShipShim identifies Winit from the bare number — no hints needed.
Get the Winit 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": "ID88888888888888CN"}'
Response:
{
"tracking_number": "ID88888888888888CN",
"carrier": "Winit",
"country": "CN",
"tracking_url": "https://track.winit.com/tracking/Index/",
"confidence": 100,
"matches": [
{
"carrier": "Winit",
"country": "CN",
"confidence": 100,
"tracking_url": "https://track.winit.com/tracking/Index/"
}
]
}
Get a free API key Read the API reference — the free tier includes 100 calls/month.