Site Logo

List Carrier Features

This API endpoint can be used to retrieve a list of features offered by a particular carrier. Features include things like whether or not the carrier supports spot-quotes, tracking, or scheduled pickups.

Carrier Codes

In the request below, you will need to know the carrier code for your LTL carrier. This code will be passed in the URL as a query string.

The carrier codes are mapped to the carriers' SCACs, and many carriers have more than one. The SCACs may correspond to different services or other arrangements that the carrier offers. For more information about the individual SCACs listed, contact the carrier.

Example Request

GET /v-beta/ltl/carriers/:carrier_code/features

1
2
3
GET /v-beta/ltl/carriers/FXFE/features 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
{
"features": [
"auto_pro",
"connect",
"documents",
"quote",
"scheduled_pickup",
"spot_quote",
"tracking"
]
}