List Shipping Labels
Retrieve shipping labels for your company.
GET
/api/v1/shipping/labels?page=1Description
Returns paginated shipping labels with tracking numbers and recipient details.
Request
Headers
| Header | Value | Required |
|---|---|---|
| Authorization | Bearer <access_token> | Yes |
| Content-Type | application/json | Yes |
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| page | number | No | Page number. Default is 1. |
| limit | number | No | Records per page. Default is 10 (tickets/wallet max 100). |
| country | string | No | Filter by country code. |
| start_date | string | No | Created on or after (YYYY-MM-DD or MM/DD/YYYY). |
| end_date | string | No | Created on or before. |
Response
Related Endpoints
Did this page help you?
Request
curl -X GET https://uat.unduit.com/api-exposed/api/v1/shipping/labels?page=1 \
-H "Authorization: Bearer <token>" \
-H "Content-Type: application/json"Success Response
{
"labels": [
{
"id": 9876,
"user_id": 42,
"firstname": "Jane",
"lastname": "Smith",
"address_line_1": "100 Main St",
"city": "Austin",
"state": "TX",
"zip": "78701",
"country": "US",
"lbs": 2,
"oz": 0,
"length": 12,
"width": 10,
"height": 4,
"label_count": 1,
"merge_path": "https://api.example.com/show-my-file?path=...",
"tracking_numbers": [
{
"tracking_number": "1Z999AA10123456784",
"tracking_link": "https://wwwapps.ups.com/WebTracking/..."
}
],
"created_at": "2026-06-02 15:00:00"
}
],
"page": 1,
"limit": 10,
"total": 1,
"total_pages": 1
}