Skip to content

Skydropx - Get Carriers

This module lists all available carriers in your Skydropx account. It does not require additional parameters beyond the credentials. It makes a GET request to the /carriers endpoint and returns the list of carriers with their ID, name, slug, and available services.

ParameterTypeRequiredDescription
credentials_idcredentialsYesSkydropx credential (provider: skydropx)

A skydropx type credential is required with the following fields:

  • api_token: Skydropx API Token
{
"success": true,
"carriers": [
{
"id": "fedex",
"name": "FedEx",
"slug": "fedex",
"services": ["express", "ground", "standard_overnight"]
},
{
"id": "estafeta",
"name": "Estafeta",
"slug": "estafeta",
"services": ["next_day", "ground", "express"]
}
],
"count": 6,
"message": "6 transportistas disponibles"
}
{
"credentials_id": "mi_credencial_skydropx"
}
  • Useful for knowing the available carriers and services before creating a shipment or getting a quote
  • Available carriers depend on your Skydropx account configuration
  • Skydropx includes Mexican carriers like Estafeta, Redpack, J&T, Paquetexpress, in addition to international ones
  • The list includes the services supported by each carrier
  • Skydropx - Create Shipment / Label (skydropxCreateShipment)
  • Skydropx - Get Rates (skydropxGetRates)
  • Skydropx - Track Shipment (skydropxGetTracking)
  • Skydropx - Cancel Shipment (skydropxCancelShipment)