UBI Smart Parcel tracking URL from a tracking number
UBI Smart Parcel (CN) tracking numbers follow this format: matches `^([0-9]{2}[A-Z]{3}|[0-9]{3}[A-Z]{2}|[0-9]{4}[A-Z])[0-9]{18}$`. ShipShim detects the carrier from the number and returns the direct tracking link.
Example: number in, tracking URL out
| Example tracking number | 88KKK888888888888888888 |
|---|---|
| Tracking URL | https://www.ubismartparcel.com/ |
This number format is shared by 0 other carriers. ShipShim still returns
UBI Smart Parcel in the ranked matches list from the bare number, and locks onto it (confidence 100) when you
pass carrier=UBI Smart Parcel or a country hint.
Get the UBI Smart Parcel 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": "88KKK888888888888888888", "carrier": "UBI Smart Parcel"}'
Response:
{
"tracking_number": "88KKK888888888888888888",
"carrier": "UBI Smart Parcel",
"country": "CN",
"tracking_url": "https://www.ubismartparcel.com/",
"confidence": 100,
"matches": [
{
"carrier": "UBI Smart Parcel",
"country": "CN",
"confidence": 100,
"tracking_url": "https://www.ubismartparcel.com/"
}
]
}
Get a free API key Read the API reference — the free tier includes 100 calls/month.