Services

The same delivery options you choose in your panel. Express for urgent orders, Standard for everyday shipping, or Economy to save on costs.

Available services

These are the same options you see when creating an order in your panel:

FieldTypeDescription
idintegerUnique service identifier
codestringService code
namestringService name
typestringService type

Available Services

The following services are typically available (actual availability depends on your account configuration):

ServiceCodeType
NextDay ExpressEXPRESSexpress
NextDay StandardSTANDARDstandard
NextDay EconomyECONOMYeconomy

Choose a service

When syncing an order, include the service_id - just like selecting a service in your panel:

{
  "destination_address": "Calle Secundaria 456",
  "destination_locality": "Providencia",
  "weight": 2.5,
  "service_id": 1,
  // ... other fields
}

Fetch the list of services

Get all available services programmatically:

GET
/services
curl https://api.4nortes.app/api/v1/services \
  -H "Authorization: Bearer {token}"

Response

{
  "success": true,
  "message": "Services retrieved successfully",
  "data": [
    {
      "id": 1,
      "code": "EXPRESS",
      "name": "NextDay Express",
      "type": "express"
    },
    {
      "id": 2,
      "code": "STANDARD",
      "name": "NextDay Standard",
      "type": "standard"
    },
    {
      "id": 3,
      "code": "ECONOMY",
      "name": "NextDay Economy",
      "type": "economy"
    }
  ],
  "timestamp": "2025-02-03T10:00:00.000000Z"
}

Was this page helpful?