Site Logo

🎉 ShipEngine is becoming ShipStation API 🎉

Over the next few months you'll notice the ShipEngine website, documentation portal, and dashboard being rebranded as ShipStation API. For our ShipEngine customers, you don't need to take any action or change any of your integrations in any way. All endpoints will remain the same and continue to function as they always have.

To learn more about what's coming, review our New ShipStation API page.

List Carrier Features

Use this endpoint to retrieve a list of features offered by a particular carrier. Features include things like support for spot-quotes, tracking, or scheduled pickups.

Requirements

  • 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.

You can find a list of carriers and their corresponding carrier codes on the Connect LTL Carrier Accounts page.

Example Request & REsponse

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"
]
}