Track a parcel

Enter up to 10 tracking numbers at a time.
FETCHING LOGISTICS DATA...
Developer Reference

API Documentation

Full reference for the ILS Logistics Tracking interface.

Interface Info
FieldValue
Interface NameLogistics Tracking
FrequencyReal Time
Endpointhttp://106.52.44.213:8485/oms/v2/event/getOrdersTrack
Request TypePOST
Method ValuetrackOrders
Request Parameters
FieldTypeRequiredDescription
userIdStringYCustomer ID (contact support)
pddStringYCustomer's private key
methodStringYFixed: trackOrders
trackingNosList<String>YTracking numbers, max 100
Request Example
{
  "userId": "1",
  "pdd": "abcdefghijklmnopqrstuvwxyz",
  "method": "trackOrders",
  "trackingNos": [
    "3676E4043665",
    "3676E4038434",
    "3676E4038521"
  ]
}
Response Parameters
COMMON RESPONSE
FieldTypeDescription
codeintegerResponse status code
msgStringException description
bodyList<ILSBillEventVO>Detailed tracking data
ILSBillEventVO
FieldTypeDescription
consignmentStringQueried order number
orderStatusOrderStatusWaybill information
billTrackListList<BillTrackList>Logistics trajectory nodes
OrderStatus
FieldTypeDescription
serviceStringService provider
despatchdepotStringStarting point
despatchdateDateDeparture time
deliverydepotStringLatest delivery location
lastscanDateLatest event time
statusStringEvent status description
BillTrackList
FieldTypeDescription
deportStringPackage location
descStringEvent description
dateDateTime of the event
imgList<String>Image URLs
Success Response Example
{
  "code": 200,
  "msg": "",
  "body": [
    {
      "consignment": "3676E4043665",
      "orderStatus": {
        "Service": "Sea Freight",
        "Status": "Shipment loaded into container...",
        "Despatch Date": "2025-02-07 10:53:14",
        "Lastscan": "2025-02-14 10:10:35"
      },
      "billTrackList": [ ... ]
    },
    {
      "consignment": "3676E4038434",
      "orderStatus": null,
      "msg": "Order information not found"
    }
  ]
}
Event Reference

Logistics Track Nodes

Complete reference of all ILS event codes and their descriptions.