cargopanel logocargopanel for developers

Get Shipment Details

GEThttps://api.cargopanel.co/v1/shipments/domestic/{shipmentId}
GEThttps://sandbox-api.cargopanel.co/v1/shipments/domestic/{shipmentId}

Retrieve details of a specific domestic shipment using its ID.

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

Request Fields

shipmentIdstringrequired

The ID of the domestic shipment you want to retrieve.

Example Response

200
{
  "id": "...",
  "carrier": {
    "name": "Yurtiçi Kargo",
    "price": 0,
    "currency": "TRY"
  },
  "packages": [
    {
      "quantity": "1",
      "weight": "5",
      "dimensions": {
        "width": "20",
        "length": "30",
        "height": "15"
      }
    }
  ],
  "status": [
    {
      "status": "delivered",
      "date": "2026-04-07T10:32:41.503Z",
      "milestone": "delivered"
    }
  ],
  "tracking": {
    "trackingNumber": "...",
    "events": [
      {
        "status": "Delivered",
        "description": "Package has been delivered.",
        "location": "ANKARA",
        "date": "2026-04-07T10:32:41.503Z",
        "milestone": "delivered"
      }
    ]
  },
  "sender": {
    "firstName": "...",
    "lastName": "...",
    "city": "İstanbul"
  },
  "receiver": {
    "firstName": "...",
    "lastName": "...",
    "city": "Ankara"
  }
}

Responses

200Shipment retrieved successfully
401Unauthorized (invalid or missing token)
404Shipment not found
500Internal server error