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:
| Field | Type | Description |
|---|---|---|
id | integer | Unique service identifier |
code | string | Service code |
name | string | Service name |
type | string | Service type |
Available Services
The following services are typically available (actual availability depends on your account configuration):
| Service | Code | Type |
|---|---|---|
| NextDay Express | EXPRESS | express |
| NextDay Standard | STANDARD | standard |
| NextDay Economy | ECONOMY | economy |
Not all services are available for every route. Use the Rates API to check what's available for a specific destination.
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
/servicescurl 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"
}
Want to show prices at checkout? Use the Rates API to get quotes for each service based on destination and package size.