Carriers

Retrieve information about the carriers and shipping methods supported by RevCascade.

Operations

Click on an Operation to view requirements, options, and examples.

GET /v1/carriers/ Get a list of carriers & methods
GET /v1/carriers/{carrier_id}/ Get a single carrier & methods
Carrier Properties
Name Description

id

integer (11)

A static id assigned by RevCascade. Can be used as the primary key in the url of other carrier endpoints.

name

string (64)

The name of the carrier.

code

string (4)

The SCAC code for the carrier.

shipping_methods

array of shipping methods

Array of shipping methods supported by the carrier.

"shipping_methods": [{
    "id": 3,
    "name": "FedEx Ground",
    "code": "FEDEX_GROUND",
    "generic_shipping_method": {
        "name": "Ground",
        "description": "Should arrive within 3-7 days after processing time",
        "type": "small_parcel"
    }
},{
    "id": 4,
    "name": "FedEx 2 Day",
    "code": "FEDEX_2_DAY",
    "type": "small_parcel",
    "generic_shipping_method": {
        "name": "Expedited",
        "description": "Should arrive within 2-3 days after processing time",
        "type": "small_parcel"
    }
}]

Back to Top

Operation Details & Examples
GET /v1/carriers/ Get a list of carriers & methods

Get a list of all carriers and supported shipping methods

GET https://api.revcascade.com/v1/carriers/

Back to Top

GET /v1/carriers/1/ Get a single carrier

Get a single carrier (and the carrier's supported methods) by its ID.

GET https://api.revcascade.com/v1/carriers/2/

Back to Top