Skip to main content
GET
/
parcels
/
statuses
Retrieve a list of parcel statuses
curl --request GET \
  --url https://panel.sendcloud.sc/api/v2/parcels/statuses \
  --header 'Authorization: Basic <encoded-value>'
[
  {
    "id": 3,
    "message": "En route to sorting center"
  },
  {
    "id": 4,
    "message": "Delivery delayed"
  },
  {
    "id": 5,
    "message": "Sorted"
  },
  {
    "id": 6,
    "message": "Not sorted"
  }
]

Documentation Index

Fetch the complete documentation index at: https://sendcloud.dev/llms.txt

Use this file to discover all available pages before exploring further.

API v2 is entering maintenance mode. New users should start with API v3 to access our latest features and improved performance. Already using v2? Don’t worry, your current integration remains fully functional. Read more about maintenance mode, or check out the migration guide for API v3.

Authorizations

Authorization
string
header
required

Basic Authentication using API key and secrets is currently the main authentication mechanism.

Response

200 - application/json

OK

id
integer
required

Unique identifier for the parcel status.

Required range: x >= 1
Example:

5

message
string
required

A message that describes what the given status means.

Example:

"Sorted"