首页开放平台文档海运拼箱 LCL

海运拼箱 LCL 运价查询

按起运港 + 目的港 + 拼箱仓库查询拼箱实时运价。按 W/M(重量吨 / 体积吨取大)计费,含目的港费用和起运港附加费。

接口信息

接口路径POST /api/openapi/v1/freight/lcl/search
积分消耗1 积分 / 次
数据更新每日更新

请求参数

字段名类型必填说明示例
polstring起运港,支持 5 位代码(精确)/ 中文 / 英文(模糊)查代码 ↗CNSHA / 上海 / Shanghai
podstring目的港,支持 5 位代码(精确)/ 中文 / 英文(模糊)查代码 ↗DEHAM / 汉堡 / Hamburg
warehousestring拼箱仓库(YTL/JGC/YTLM 等)YTL
carrierstring拼箱公司代码筛选ECU
pageint页码,默认 11
limitint每页条数,默认 20,最大 5020
pol_countrystring起运港国家码(2 位 ISO,可选),pol 同名多港时锁定国家CN
pod_countrystring目的港国家码(2 位 ISO,可选)。pod 同名多港时不传则返回所有同名港运价、按命中港口数计费;传此参数锁定单一国家US

响应字段

字段名类型说明
resolved.pol / podobject回显本次解析的港口(含 input/code/name/name_en)
list[].idstring运价记录唯一 ID
list[].pol / podobject起运港 / 目的港 { code, name, name_en }
list[].carrierobject承运方 { code, name }(如 MAT美森、EMC长荣 等)
list[].warehouseobject拼箱仓库 { code, name }(如 JGC 监管仓、YTL 盈通仓)
list[].transitobject{ is_direct: 是否直航, days: 航程天数, port/port_en: 中转港中英文 }
list[].schedule.cutoff_datestring截关日期 YYYY-MM-DD
list[].schedule.departure_datestring开船日期 ETD YYYY-MM-DD
list[].schedule.arrival_datestring预计到港日期 ETA
list[].price.valuenumberW/M 单价
list[].price.unitstring计费单位(如 CNY/W/M,表示人民币按 W/M 计费)
list[].price.weight_ratiostring重抛比(如 1:750,1 立方米折算 750 kg)
list[].local_feeobject | null本地费 { type, price, remark }(如 AMS/DOC,无本地费时为 null)
list[].remarkstring备注(如最大体积限制 <=5RT
list[].updated_atstring最后更新日期 YYYY-MM-DD
credit_used / credit_balanceint本次扣减积分(LCL 固定 1) / 扣减后剩余

完整 curl 请求示例

# pol / pod 同时支持 国际标准代码 5 位 / 中文 / 英文(如 "CNSHA" / "上海" / "shanghai")
curl -X POST https://www.5688.cn/api/openapi/v1/freight/lcl/search \
  -H "Content-Type: application/json" \
  -H "X-Awice-AppKey: AK_xxxxxxxxxxxxxxxx" \
  -H "X-Awice-Timestamp: 1746086400" \
  -H "X-Awice-Nonce: a1b2c3d4e5f6a7b8" \
  -H "X-Awice-Signature: 7f8e9d6c5b4a..." \
  -d '{
    "pol": "CNSHA",
    "pod": "USLSA",
    "warehouse": "YTL",
    "page": 1,
    "limit": 20
  }'

成功响应示例

{
  "code": 0,
  "msg": "success",
  "request_id": "req_xxxxxxxxxxxxxxxx",
  "data": {
    "resolved": {
      "pol": { "input": "CNSHA", "code": "CNSHA", "name": "上海", "name_en": "shanghai" },
      "pod": { "input": "USLSA", "code": "USLSA", "name": "洛杉矶", "name_en": "los angeles,ca" },
      "carrier": null
    },
    "total": 2,
    "page": 1,
    "limit": 20,
    "list": [
      {
        "id": "2303546",
        "pol": { "code": "CNSHA", "name": "上海", "name_en": "shanghai" },
        "pod": { "code": "USLSA", "name": "洛杉矶", "name_en": "los angeles,ca" },
        "carrier": { "code": "MAT美森", "name": "MAT美森" },
        "warehouse": { "code": "JGC", "name": "监管仓" },
        "transit": {
          "is_direct": false,
          "days": 11,
          "port": "洛杉矶",
          "port_en": "Los Angeles,ca"
        },
        "schedule": {
          "cutoff_date": "2026-05-25",
          "departure_date": "2026-05-27",
          "arrival_date": "2026-06-07"
        },
        "price": {
          "value": 187,
          "unit": "CNY/W/M",
          "weight_ratio": "1:750"
        },
        "local_fee": {
          "type": "AMS",
          "price": 25,
          "remark": ""
        },
        "remark": "<=5RT",
        "updated_at": "2026-02-09"
      }
    ]
  },
  "credit_used": 1,
  "credit_balance": 9498
}
计费提示:实际订舱费用 = max(weight_in_tons, volume_in_cbm) × price_per_wm + 起运港附加费 + 目的港费用,且总额不低于 min_charge。
海运拼箱 LCL 接口 - 物流巴巴开放平台文档 | 5688.cn