Shipping Labels
Get label
Get a specific shipping label by ID.
Authorization
authorization AuthorizationBearer <token>
In: header
Path Parameters
id*string
Shipping label ID
Format
uuidResponse Body
application/json
application/json
curl -X GET "https://api.parsel.app/shipping_labels/123e4567-e89b-12d3-a456-426614174000"{
"data": {
"created_at": {},
"id": "123e4567-e89b-12d3-a456-426614174000",
"label_url": "https://example.com/labels/123.pdf",
"shipping_rate": {
"carrier": "UPS",
"estimated_delivery_date": {},
"estimated_delivery_days": 3,
"id": "123e4567-e89b-12d3-a456-426614174001",
"price": {
"amount": 10,
"currency": "USD"
},
"service": "Ground"
},
"shipping_rate_id": "123e4567-e89b-12d3-a456-426614174001",
"status": "PRE_TRANSIT",
"tracking_code": "1Z999AA10123456784",
"updated_at": {}
}
}{
"errors": {
"message": "The requested resource could not be found",
"status": "Not Found"
}
}