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
  2. Tracking

Get multiple specific shipments

You can use this endpoint to get details about multiple specific shipments.

The maximum number of shipments per request is 50

GET https://api.shipbubble.com/v1/shipping/labels/list/:order_ids

Path Parameters

Name
Type
Description

order_ids*

string

use comma (,) to separate each with your order IDs. Ex:

SB-6B211535C528,SB-FA9ABC09A876

{
    "status": "success",
    "message": "Retrieved successfully",
    "data": {
        "results": [
            {
                "order_id": "SB-6B211535C528",
                "status": "picked_up",
                "courier": {
                    "name": "Redstar (pickup)",
                    "email": "[email protected]",
                    "phone": "08023374847",
                     "tracking_code": "SA01203663",
                     "tracking_message": "WaybillNumber: SA01203663",
                     "rider_info": null
                },
                "ship_from": {
                    "name": "Lebron James",
                    "phone": "+2348057575855",
                    "email": "[email protected]",
                    "address": "Phase 1, 4 Michael Olawale-Cole Dr, Lekki Phase I 106104, Lagos, Nigeria",
                    "latitude": 6.459056599999999,
                    "longitude": 3.4769383
                },
                "ship_to": {
                    "name": "Lebron James",
                    "email": "[email protected]",
                    "phone": "+2348057575855",
                    "address": "Alh. Masha Rd, Surulere 101241, Lagos, Nigeria",
                    "latitude": 6.499872799999999,
                    "longitude": 3.3609343
                },
                "package_status": [
                    {
                        "status": "Pending",
                        "datetime": "2022-02-14 22:58:02"
                    }
                ],
                "events": [],
                "waybill_document": null,
                "dropoff_station": null,
                "pickup_station": null,
                "tracking_url": "https://localhost:5000/orders/tracking/GET-BB7EDE9F",
                "date": "2022-01-28T01:17:46.000Z"
            }
        ]
    }
}
PreviousGet shipmentsNextWebhooks

Last updated 5 months ago

Was this helpful?