cargopanel logocargopanel for developers

Tracking Shipment

POSThttps://api.cargopanel.co/api/v1/shipping/track

Show a cargopanel tracking data in your account.

This API requires a contract. Get in touch with cargopanel Support Team.

Path Params

trackingNumberstringrequired

Tracking Number

Request Body

The request body should be a JSON object containing the following structure:

{
  "data": {
    "trackingNumber": "YOUR_TRACKING_NUMBER"
  }
}

Example Response

{
    "status": [
        {
            "status": "İşleme Alındı",
            "updatedAt": "2025-05-29T15:37:25.045Z"
        },
        {
            "status": "Depoya Ulaşması Bekleniyor",
            "updatedAt": "2025-05-29T15:53:35.279Z"
        },
        {
            "status": "Depoya Ulaştı",
            "updatedAt": "2025-05-30T07:23:57.418Z"
        },
        {
            "status": "Çıkış Bekleniyor",
            "updatedAt": "2025-05-30T07:58:26.289Z"
        },
    ]
}

Responses

200tracking successfully
404shipment not found