FedEx tracking URL from a tracking number
FedEx (US) tracking numbers follow this format: 12 digits, or 15 digits, or 00 prefix + 16 digits, or 20-22 digits. ShipShim detects the carrier from the number and returns the direct tracking link.
Example: number in, tracking URL out
| Example tracking number | 986578788855 |
|---|---|
| Tracking URL | https://www.fedex.com/fedextrack/?trknbr=986578788855 |
This format is distinctive, so ShipShim identifies FedEx from the bare number — no hints needed.
Get the FedEx 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": "986578788855"}'
Response:
{
"tracking_number": "986578788855",
"carrier": "FedEx",
"country": "US",
"tracking_url": "https://www.fedex.com/fedextrack/?trknbr=986578788855",
"confidence": 100,
"matches": [
{
"carrier": "FedEx",
"country": "US",
"confidence": 100,
"tracking_url": "https://www.fedex.com/fedextrack/?trknbr=986578788855"
}
]
}
Get a free API key Read the API reference — the free tier includes 100 calls/month.
Related carriers
- UPS tracking URL (US)
- USPS tracking URL (US)
- Amazon Logistics tracking URL (US)
- OnTrac tracking URL (US)
- LaserShip tracking URL (US)
- Spee-Dee Delivery tracking URL (US)