Get LTL Rates

Property Type Description
from array, required; Array contains coordinates: array(lat, lng);
lat/lng - float number, not null.
to array, required Array contains coordinates: array(lat, lng);
lat, lng - float number, not null.
volume float number, required Volume
weight float number, required Weight in kg
date string By default today
currency string Short name of currency by default USD

{
  ltl(from: [46.482526, 30.7233095],to: [31.2303904, 121.4737021], weight: 2000,volume: 1,currency: USD,date: "2021-01-29") {
    shipmentId
    validTo
    currency
    transportationMode
    landFreight {
       price,
       distance,
       transitTime,
       originalPrice,
       originalCurrency,
       interpolation,
       co2,
		overdue
    }
  }
}

                              

{
  "data": {
    "ltl": [
      {
        "shipmentId": "SR-107779",
        "validTo": "2020-08-31",
        "currency": "USD",
        "transportationMode": "truck",
        "landFreight": {
          "price": 3148,
          "distance": "9104.86 km",
          "transitTime": "15 days",
          "interpolation": true
        }
      }
    ]
  }
}