Skip to main content
GET
https://api.crbtrack.com
/
api
/
v1
/
labels
/
{trackingNumber}
curl "https://api.crbtrack.com/api/v1/labels/CBECUSD123456789" \
  -H "X-API-Key: your_api_key"
{
  "trackingNumber": "CBECUSD123456789",
  "labelUrl": "https://labels.crbtrack.com/CBECUSD123456789.pdf?token=abc123",
  "format": "PDF",
  "createdAt": "2024-12-21T10:30:00Z",
  "printCount": 1
}
Retrieves information about a shipping label, including the download URL.

Path Parameters

trackingNumber
string
required
The tracking number of the parcel.

Response

trackingNumber
string
The tracking number
labelUrl
string
URL to download the label (valid for 24 hours)
format
string
Label format: PDF, ZPL, or PNG
createdAt
string
When the label was generated
printCount
integer
Number of times the label has been downloaded
curl "https://api.crbtrack.com/api/v1/labels/CBECUSD123456789" \
  -H "X-API-Key: your_api_key"
{
  "trackingNumber": "CBECUSD123456789",
  "labelUrl": "https://labels.crbtrack.com/CBECUSD123456789.pdf?token=abc123",
  "format": "PDF",
  "createdAt": "2024-12-21T10:30:00Z",
  "printCount": 1
}