Shipping APIs
//
Get All Shipments
The operation fetches all created Shipments. If query parameters are not provided, it will default endDate as current date, page as 1 and size as 10.
Security
bearerAuth
Filter merchant shipments transaction report.
- true → Returns shipment transaction reports for all merchants associated with the developer.
- To view the transaction report for a specific merchant, include the header
X-PB-Developer-Partner-IDwith the value set to that merchant'ssubscriptionId.
Example:merchant=true
The start date of the date range used to filter shipments by their dateOfShipment (the actual ship date set on the shipment). Only shipments that have a dateOfShipment value are returned when this filter is applied. The date format must be: YYYY-MM-DD.
Example:fromShipmentDate=2026-06-01
The end date of the date range used to filter shipments by their dateOfShipment (the actual ship date set on the shipment). Only shipments that have a dateOfShipment value are returned when this filter is applied. The date format must be: YYYY-MM-DD.
Example:toShipmentDate=2026-06-10
- Sandbox Serverhttps://api-sandbox.sendpro360.pitneybowes.com/shipping/api/v1/shipments
- Production Server (uses live data)https://api.sendpro360.pitneybowes.com/shipping/api/v1/shipments
- Sandbox Server for Canadahttps://api-ppd.shipping360.pitneybowes.com/ca/shipping/api/v1/shipments
- Production Server for Canadahttps://api.shipping360.pitneybowes.com/ca/shipping/api/v1/shipments
curl -i -X GET \
'https://api-sandbox.sendpro360.pitneybowes.com/shipping/api/v1/shipments?startDate=2026-06-01&endDate=2026-06-10&page=string&size=string&carrier=UPS&insured=true&returnLabel=false&isInternational=true&refundEligible=true&merchant=true&shipmentType=apv&fromShipmentDate=2026-06-01&toShipmentDate=2026-06-10' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'X-PB-Developer-Partner-Id: string' \
-H 'X-PB-LocationId: string'Response
- GetAllShipments
- GetAllShipmentsLTL
{ "pageInfo": { "total": 78, "pages": 8, "page": 1 }, "data": [ { "correlationId": "49ce304a251447539c84b204d968d7c4", "subId": "sac735d", "fromAddress": { … }, "toAddress": { … }, "altReturnAddress": { … }, "parcelTrackingNumber": "UPS2202625646462636", "serviceId": "NDA", "rates": [ … ], "shipmentId": "UPS2202625646462636", "shipmentOptions": { … }, "customs": { … }, "status": "Label Printed", "carrier": "ups", "carrierAccountId": "EQ7Ar2dmXXX", "metadata": [ … ], "parcel": { … }, "dispenseClient": "api", "refundStatus": "string", "isInternational": true, "isReturnLblRequested": false, "insured": true, "carrierCode": "string", "transactionCreateDate": "2026-02-09T07:22:05.457Z", "locationId": "zLwdWnZ7LyVWknO", "customerLocationId": "zLwdWnZ7LyVWknO", "references": { … }, "ecommerceProvider": { … } } ] }