latestOpenAPI 3.0.0Proprietary2026-08-22131410675.6 KB

8d8a7cf79204

freight

List freight shipment documents

List the documents available for a freight shipment, such as the Bill of Lading, pallet labels, and the proof of delivery. Documents become available as the shipment progresses: the Bill of Lading is generated at booking, while a proof of delivery only exists after delivery.

Each document's url is a path on the API host that returns the PDF, for example https://api.shipengine.com/v1/downloads/....

get/v1/freight/shipments/{freight_shipment_id}/documents

Response

The request was a success.

Example response

{
  "documents": [
    {
      "type": "bill_of_lading",
      "created_at": "2026-04-16T14:32:07Z",
      "url": "/v1/downloads/10/a1b2c3d4e5f6/bill_of_lading.pdf"
    }
  ]
}