船期信息 (查询接口)


查询系统船期信息(通过船名+航次或者码头+柜号进行查询)

请求

  • 接口路径:v1/sailing
  • 请求方法:POST
  • 请求头内容:
    • Content-Type: application/json
  • 请求Body内容
{
    "shipName": "", // 船名
    "voyageNo": "", // 航次号
    "location": "", // 码头
    "containerNos": [""] // 柜号
}
属性 类型 说明
shipName String 船名
voyageNo String 航次号
location String 码头
containerNos list 柜号

响应

响应正文:

{
  "success": true,
  "message": null,
  "result": [
    {
      "shipName": "", // 船名
      "shipNameCh": "", // 船名中文
      "voyageNo": "", // 航次号
      "imo": "", // imo号
      "location": null, // 码头
      "carrierId": "", // 箱属
      "shipper": "", // 承运人
      "cutoffDate": 1751274000000, // 截关时间
      "agency": "", // 船代
      "agencyNameEng": "", // 船代英文名
      "estimateArrivalDate": 1751299200000, // 预抵时间
      "estimateLeaveDate": 1751385600000, // 预计离港时间
      "dataPlatCode": "NS_SW", // 船代平台
      "impVoyno": "", // "进口航次"
      "closeDate": 1751274000000, // 截单日期
      "shipStatus": "PUBLISH" // 发布状态  PUBLISH-已发布
    }
  ],
  "error": null
}
{
    "success": false,
    "message": "失败信息",
    "result": null,
    "error": null
}
属性 类型 说明
shipName String 船名
shipNameCh String 船名中文
voyageNo String 航次号
imo String imo号
location String 码头
carrierId String 箱属
shipper String 承运人
cutoffDate long 截关时间(Epoch微秒)
agency long 截关时间(Epoch微秒)
cutoffDate String 船代
agencyNameEng String 船代英文名
estimateArrivalDate long 预抵时间(Epoch微秒)
estimateLeaveDate long 预计离港时间(Epoch微秒)
dataPlatCode String 船代平台
impVoyno String 进口航次
closeDate long 截单日期(Epoch微秒)
shipStatus String 发布状态 PUBLISH-已发布