Shipbubble API Documentation
  • Shipbubble API
  • Get started
    • Authentication
    • Request and Responses
    • Errors
    • Rate Limiting
    • Pagination
    • Postman
  • API Reference
    • Wallet
      • Get shipping wallet balance
      • Request wallet fund
    • Addresses
      • Validate address (global)
      • Get validated addresses
      • Edit address details
      • Get single address details
    • Package categories
    • Package dimensions
    • Couriers
    • Rates
      • Request shipping rates
      • Request shipping rates from selected couriers
      • Edit request token details
    • Cash on delivery
    • Insurance
      • Get Insurance Rates
    • Shipments
      • Create shipment
      • Cancel shipment
    • Returns
      • Get rates for a return shipment request
    • Tracking
      • Get shipments
      • Get multiple specific shipments
    • Webhooks
      • Webhook simulator (sandbox)
Powered by GitBook
On this page

Was this helpful?

  1. API Reference

Package dimensions

In order to help determine the dimension of your shipment package, we have provided a list of possible package item dimensions, all you need to do is a filter for the one that matches/is similar to your package dimension.

GET https://api.shipbubble.com/v1/shipping/labels/boxes

{
    "status": "success",
    "message": "Retrieved successfully",
    "data": [
        {
            "box_size_id": 27459899,
            "name": "tiny box",
            "description_image_url": "https://res.cloudinary.com/delivry/image/upload/v1635776054/package_boxes/tiny_box_ie9dob.jpg",
            "height": 2,
            "width": 5,
            "length": 5,
            "max_weight": 5
        },
        {
            "box_size_id": 44174253,
            "name": "medium box",
            "description_image_url": "https://res.cloudinary.com/delivry/image/upload/v1635776059/package_boxes/medium_box_v1oisg.png",
            "height": 10,
            "width": 20,
            "length": 20,
            "max_weight": 20
        },
        {
            "box_size_id": 42172412,
            "name": "big box",
            "description_image_url": "https://res.cloudinary.com/delivry/image/upload/v1635776049/package_boxes/big_box_wrcubo.png",
            "height": 2,
            "width": 40,
            "length": 40,
            "max_weight": 40
        }
    ]
}
PreviousPackage categoriesNextCouriers

Last updated 2 years ago

Was this helpful?