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

Data Fields

idA static id assigned by RevCascade. Can be used as the primary key in the url of other carrier endpoints.
name The name of the carrier.
code The SCAC code for the carrier.
shipping_methods

Array of shipping methods supported by the carrier.

"shipping_methods": [{
    "id": 3,
    "name": "FedEx Ground",
    "code": "FEDEX_GROUND",
    "type": "small_parcel",
    "generic_shipping_method": {
        "name": "Ground",
        "description": "Should arrive within 3-7 days after processing time",
        "type": "small_parcel"
},{
    // other shipping methods omitted for brevity
}]

Back to Top

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