Estimate Shipment Rate

This API describes how to get a shipment rate estimation.


Method: POST

Request Body

json
{
  "shipping_methods": [
    { "shipping_method": "STAND" },
    { "shipping_method": "PLUS" },
    { "shipping_method": "UPS01" }
  ],
  "currency": "USD",
  "warehouse_code": "LAX",
  "from_address": {
    "address_1": "123 First St.",
    "address_2": "",
    "city": "Anytown",
    "state": "CA",
    "zip": "90210",
    "country": "US"
  },
  "to_address": {
    "address_1": "1 MAIN ST",
    "address_2": "",
    "city": "Anytown",
    "state": "CA",
    "zip": "90210",
    "country": "US"
  },
  "package": {
    "weight": 20.35,
    "width": 12.55,
    "length": 15.2,
    "height": 4.7
  }
}

Request Body Explanation

Attribute NameTypeDescription
shipping_methodsListMethod of shipping
shipping_methodStringSeveral shipping methods need to query
currencyStringCurrency code, only support USD for now
warehouse_codeStringcode of the warehouse shipping from
from_addressObjectsender's address
to_addressObjectconsignee's address
address_1Stringaddress line 1
address_2Stringaddress line 2
cityStringcity name
stateStringstate or province
zipStringzip code
countryStringcountry name
packageObjectpackage information
weightFloatpackage weight, unit LB
widthFloatpackage width, unit inch
lengthFloatpackage length, unit inch
heightFloatpackage height, unit inch

Response Body

json
{
  "code": 200,
  "data": [
    {
      "currency": "USD",
      "shipping_method": "STAND",
      "estimated_cost": 17.6
    },
    {
      "currency": "USD",
      "shipping_method": "PLUS",
      "estimated_cost": 17.6
    },
    {
      "currency": "USD",
      "shipping_method": "UPS01",
      "estimated_cost": 17.6
    }
  ]
}

Response Body Explanation

Attribute NameTypeDescription
codeIntegerResponse code: 200 successful, 400/500 failed
dataListreturn value list of cost for different shipping methods
currencyStringCurrency code
shipping_methodStringShipping method name
estimated_costFloatestimated shipping cost. This is ONLY ESTIMATE and final quotation is determined once tracking number gets checked-in in the system.