Skip to content

Sendcloud - Track Parcel

This module gets the tracking status of a parcel in Sendcloud using its parcel ID. It makes a GET request to the /parcels/{parcel_id} endpoint and returns the parcel ID, tracking number, tracking URL, carrier, status, status ID, label URL, weight, order number, and creation and update dates.

ParameterTypeRequiredDescription
credentials_idcredentialsYesSendcloud credential (provider: sendcloud)
parcel_idtextYesParcel ID obtained when creating it in Sendcloud

A sendcloud type credential is required with the following fields:

  • public_key: Sendcloud Public Key
  • secret_key: Sendcloud Secret Key
{
"success": true,
"parcel_id": 12345,
"tracking_number": "3STEST123456789",
"tracking_url": "https://tracking.sendcloud.sc/...",
"carrier": "correos_express",
"status": "En camino",
"status_id": 3,
"label_url": "https://panel.sendcloud.sc/api/v2/labels/...",
"weight": "1.500",
"order_number": "ORD-001",
"date_created": "2026-03-23T08:00:00Z",
"date_updated": "2026-03-23T10:30:00Z",
"message": "Estado: En camino - Tracking: 3STEST123456789"
}
{
"credentials_id": "mi_credencial_sendcloud",
"parcel_id": "12345"
}
  • The parcel_id (Sendcloud internal ID) is used, not the carrier tracking number
  • The status_id corresponds to Sendcloud standardized statuses (1=Announced, 3=In transit, 11=Delivered, etc.)
  • Includes the label URL for reprinting if needed