Zippyy REST APIs
  1. Shipments
Zippyy REST APIs
  • Introduction
  • Authentication API
    • Generate Token
      POST
  • Couriers
    • Check Courier Serviceability
      GET
    • Quick Quote
      POST
    • Forward Shipment (V2)
      POST
    • Forward Shipment
      POST
  • Shipments
    • Get Details of Specific Shipment
      GET
    • Generate Label
      GET
    • Generate Label Url
      GET
    • Cancel a Shipment
      PUT
    • Generate Invoice
      GET
  • Tracking
    • Get Tracking Details
      GET
    • Webhook
      POST
  • NDR
    • Action NDR
      PUT
  • Warehouse
    • Get Warehouse
      GET
    • List of Warehouse details
      GET
    • Create new Warehouse
      POST
    • Update existing warehouse properties
      PUT
  1. Shipments

Generate Label Url

GET
/v1/external/shipments/{orderId}/label-url

Retrieve Shipment Label URL#

This endpoint allows you to retrieve the label URL for a specific shipment identified by the orderId.

Request#

Method: GET
Endpoint: {{base_url}}/v1/external/shipments/{orderId}/label-url

Request Parameters#

orderId (path parameter): The unique identifier for the order whose shipment label URL you wish to retrieve.
On a successful request, the server responds with a 200 OK status and a JSON object containing the following fields:
waybill: Currently returns null. This field may be used in future implementations to provide the waybill number associated with the shipment.
format: Currently returns null. This field may indicate the format of the label, which is not defined at this time.
message: Currently returns null. This field may be used for any messages related to the request or label generation.
label_url: A string containing the URL to access the shipment label. This will be an empty string if the label is not available.

Notes#

Ensure that the orderId provided in the request is valid and corresponds to an existing shipment.
The response fields may be updated in future versions of the API, so check the documentation regularly for any changes.

Request

Header Params

Responses

🟢200200 OK - Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/v1/external/shipments//label-url' \
--header 'Authorization: {{auth_token}}'
Response Response Example
{
    "waybill": null,
    "format": null,
    "message": null,
    "label_url": "https://zippy-india-labels.s3.us-west-1.amazonaws.com/delhivery/zplbl-6901910800973.pdf"
}
Modified at 2025-08-04 19:55:15
Previous
Generate Label
Next
Cancel a Shipment
Built with