Site Logo

🎉 ShipEngine is becoming ShipStation API 🎉

Over the next few months you'll notice the ShipEngine website, documentation portal, and dashboard being rebranded as ShipStation API. For our ShipEngine customers, you don't need to take any action or change any of your integrations in any way. All endpoints will remain the same and continue to function as they always have.

To learn more about what's coming, review our New ShipStation API page.

Get Custom Package

To obtain details about a specific custom package, like its dimensions and description, you'll use the GET method with the /v1/packages endpoint and the package_id.

Example Request & Response

GET /v1/packages/:package_id

1
2
3
GET /v1/packages/se-100896 HTTP/1.1
Host: api.shipengine.com
API-Key: __YOUR_API_KEY_HERE__

Response

1
2
3
4
5
6
7
8
9
10
11
12
{
"package_id": "se-100896",
"package_code": "custom_laptop_box",
"name": "laptop_box",
"dimensions": {
"units": "inch",
"length": 15.00,
"width": 20.00,
"height": 5.00
},
"description": "Packaging for laptops."
}