Site Logo

Get a Custom Package

To obtain custom package information, use the package_id tag. This reference allows you to access and retrieve specific information related to a particular package using its unique package ID, such as package dimensions and description.

Example

This example shows how to successfully call the GET /v1/packages/:package_id endpoint.

GET /v1/packages/:package_id

Example Request

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

Example 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."
}