Skip to content

Sendcloud - Shipping Methods

This module lists all available shipping methods in your Sendcloud account. It allows optional filtering by sender address and by return methods. It makes a GET request to the /shipping_methods endpoint and returns the list of methods with their ID, name, carrier, weight ranges, and supported countries.

ParameterTypeRequiredDescription
credentials_idcredentialsYesSendcloud credential (provider: sendcloud)
sender_address_idtextNoFilter by sender address (optional)
is_returnbooleanNoFilter only return methods (default: false)

A sendcloud type credential is required with the following fields:

  • public_key: Sendcloud Public Key
  • secret_key: Sendcloud Secret Key
{
"success": true,
"shipping_methods": [
{
"id": 8,
"name": "Correos Express Paq 24h",
"carrier": "correos_express",
"min_weight": "0.001",
"max_weight": "30.000",
"countries": ["ES", "PT"]
},
{
"id": 12,
"name": "Correos Paq Standard",
"carrier": "correos",
"min_weight": "0.001",
"max_weight": "20.000",
"countries": ["ES"]
}
],
"count": 8,
"message": "8 metodos de envio disponibles"
}
{
"credentials_id": "mi_credencial_sendcloud"
}
  • The shipping method ID returned is used as shipment_id in the Create Parcel node
  • Countries are returned as an array of ISO 2-letter codes
  • Available methods depend on the carriers configured in your Sendcloud account
  • You can filter by return methods by enabling is_return