Flyt Express tracking URL from a tracking number
Flyt Express (CN) tracking numbers follow this format: matches `^FTL[0-9]{8}([A-Z]{2})?$`. ShipShim detects the carrier from the number and returns the direct tracking link.
Example: number in, tracking URL out
| Example tracking number | FTL88888888 |
|---|---|
| Tracking URL | http://www.flytexpress.com/En/Home/LogisticsTracking |
This format is distinctive, so ShipShim identifies Flyt Express from the bare number — no hints needed.
Get the Flyt Express 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": "FTL88888888"}'
Response:
{
"tracking_number": "FTL88888888",
"carrier": "Flyt Express",
"country": "CN",
"tracking_url": "http://www.flytexpress.com/En/Home/LogisticsTracking",
"confidence": 100,
"matches": [
{
"carrier": "Flyt Express",
"country": "CN",
"confidence": 100,
"tracking_url": "http://www.flytexpress.com/En/Home/LogisticsTracking"
}
]
}
Get a free API key Read the API reference — the free tier includes 100 calls/month.