海运拼箱 LCL 运价查询
按起运港 + 目的港 + 拼箱仓库查询拼箱实时运价。按 W/M(重量吨 / 体积吨取大)计费,含目的港费用和起运港附加费。
接口信息
| 接口路径 | POST /api/openapi/v1/freight/lcl/search |
| 积分消耗 | 1 积分 / 次 |
| 数据更新 | 每日更新 |
请求参数
| 字段名 | 类型 | 必填 | 说明 | 示例 |
|---|---|---|---|---|
| pol | string | 是 | 起运港,支持 5 位代码(精确)/ 中文 / 英文(模糊)查代码 ↗ | CNSHA / 上海 / Shanghai |
| pod | string | 是 | 目的港,支持 5 位代码(精确)/ 中文 / 英文(模糊)查代码 ↗ | DEHAM / 汉堡 / Hamburg |
| warehouse | string | 否 | 拼箱仓库(YTL/JGC/YTLM 等) | YTL |
| carrier | string | 否 | 拼箱公司代码筛选 | ECU |
| page | int | 否 | 页码,默认 1 | 1 |
| limit | int | 否 | 每页条数,默认 20,最大 50 | 20 |
| pol_country | string | 否 | 起运港国家码(2 位 ISO,可选),pol 同名多港时锁定国家 | CN |
| pod_country | string | 否 | 目的港国家码(2 位 ISO,可选)。pod 同名多港时不传则返回所有同名港运价、按命中港口数计费;传此参数锁定单一国家 | US |
响应字段
| 字段名 | 类型 | 说明 |
|---|---|---|
| resolved.pol / pod | object | 回显本次解析的港口(含 input/code/name/name_en) |
| list[].id | string | 运价记录唯一 ID |
| list[].pol / pod | object | 起运港 / 目的港 { code, name, name_en } |
| list[].carrier | object | 承运方 { code, name }(如 MAT美森、EMC长荣 等) |
| list[].warehouse | object | 拼箱仓库 { code, name }(如 JGC 监管仓、YTL 盈通仓) |
| list[].transit | object | { is_direct: 是否直航, days: 航程天数, port/port_en: 中转港中英文 } |
| list[].schedule.cutoff_date | string | 截关日期 YYYY-MM-DD |
| list[].schedule.departure_date | string | 开船日期 ETD YYYY-MM-DD |
| list[].schedule.arrival_date | string | 预计到港日期 ETA |
| list[].price.value | number | W/M 单价 |
| list[].price.unit | string | 计费单位(如 CNY/W/M,表示人民币按 W/M 计费) |
| list[].price.weight_ratio | string | 重抛比(如 1:750,1 立方米折算 750 kg) |
| list[].local_fee | object | null | 本地费 { type, price, remark }(如 AMS/DOC,无本地费时为 null) |
| list[].remark | string | 备注(如最大体积限制 <=5RT) |
| list[].updated_at | string | 最后更新日期 YYYY-MM-DD |
| credit_used / credit_balance | int | 本次扣减积分(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。