Site Logo

List Services

This API endpoint can be used to retrieve a list of service levels offered by a particular carrier. Service levels include things like standard delivery and guaranteed end of day delivery.

Carrier IDs

Each of your LTL carriers has a unique carrier_id in ShipEngine. This ID represents your connection with a specific carrier and it is generated and returned when you connect a carrier account.

Response Body

The response object returned from sucessful requests to this endpoint will contain a list of services offered by a carrier. Each service will contain the parameters listed in the table below. To see a sample of a full response, see the Example Response section below.

NameTypeRequiredDescription
codestring✔The code for the type of service offered by the carrier.
featureslist✔This is a list of which endpoints where these accessorial services may be used.
namestring✔The name or short description of the service.

Example Request

GET /v-beta/ltl/v1/carriers/:carrier_id/services

1
2
3
GET /v-beta/ltl/carriers/car_NJuhsfkKkuxChJNtX6X5kJKKY7/services HTTP/1.1
Host: api.shipengine.com
API-Key: __YOUR_API_KEY_HERE__

Example Response

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"services": [
{
"code": "gtd_am",
"features": [
"quote",
"spot_quote",
"scheduled_pickup"
],
"name": "Guaranteed Morning"
},
{
"code": "gtd_noon",
"features": [
"quote",
"spot_quote",
"scheduled_pickup"
],
"name": "Guaranteed Noon"
},
{
"code": "gtd_pm",
"features": [
"quote",
"spot_quote",
"scheduled_pickup"
],
"name": "Guaranteed End of Day"
},
{
"code": "stnd",
"features": [
"quote",
"spot_quote",
"scheduled_pickup"
],
"name": "Standard"
}
]
}