DTDC tracking URL from a tracking number
DTDC (IN) tracking numbers follow this format: 1 letter + digits (9-20 chars). ShipShim detects the carrier from the number and returns the direct tracking link.
Example: number in, tracking URL out
| Example tracking number | K88888888 |
|---|---|
| Tracking URL | https://www.dtdc.in/tracking/tracking_results.asp?Ession=0&strCnno=K88888888 |
This number format is shared by 4 other carriers. ShipShim still returns
DTDC in the ranked matches list from the bare number, and locks onto it (confidence 100) when you
pass carrier=DTDC or a country hint.
Get the DTDC 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": "K88888888", "carrier": "DTDC"}'
Response:
{
"tracking_number": "K88888888",
"carrier": "DTDC",
"country": "IN",
"tracking_url": "https://www.dtdc.in/tracking/tracking_results.asp?Ession=0&strCnno=K88888888",
"confidence": 100,
"matches": [
{
"carrier": "DTDC",
"country": "IN",
"confidence": 100,
"tracking_url": "https://www.dtdc.in/tracking/tracking_results.asp?Ession=0&strCnno=K88888888"
}
]
}
Get a free API key Read the API reference — the free tier includes 100 calls/month.