> For the complete documentation index, see [llms.txt](https://docs.shipbubble.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.shipbubble.com/api-reference/tracking/get-multiple-specific-shipments.md).

# 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**

<mark style="color:blue;">`GET`</mark> `https://api.shipbubble.com/v1/shipping/labels/list/:order_ids`

#### Path Parameters

| Name                                         | Type   | Description                                                                                                            |
| -------------------------------------------- | ------ | ---------------------------------------------------------------------------------------------------------------------- |
| order\_ids<mark style="color:red;">\*</mark> | string | <p>use comma <strong>(,)</strong> to separate each with your order IDs. Ex: </p><p>SB-6B211535C528,SB-FA9ABC09A876</p> |

{% tabs %}
{% tab title="200: OK " %}

```javascript
{
    "status": "success",
    "message": "Retrieved successfully",
    "data": {
        "results": [
            {
                "order_id": "SB-6B211535C528",
                "status": "picked_up",
                "courier": {
                    "name": "Redstar (pickup)",
                    "email": "redstar@redstar.com",
                    "phone": "08023374847",
                     "tracking_code": "SA01203663",
                     "tracking_message": "WaybillNumber: SA01203663",
                     "rider_info": null
                },
                "ship_from": {
                    "name": "Lebron James",
                    "phone": "+2348057575855",
                    "email": "lebron@james.com",
                    "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": "lebron@james.com",
                    "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"
            }
        ]
    }
}
```

{% endtab %}
{% endtabs %}
