| 项目 | 说明 |
|---|---|
| 基础 URL | https://api.shipxy.com/apicall/v3/ |
| 请求方式 | GET |
| 授权码参数 | key,由船讯网提供的 API Key |
| 返回格式 | JSON |
| 字符编码 | UTF-8 |
| 字段 | 类型 | 说明 |
|---|---|---|
| status | int | 状态码,0 表示成功 |
| msg | string | 状态信息,成功时为 "Success" |
| data | array | 数据数组,包含具体的档案记录 |
| 项目 | 说明 |
|---|---|
| 请求地址 | https://api.shipxy.com/apicall/v3/GetShipPSC |
| 请求方式 | GET |
| 参数名 | 类型 | 是否必填 | 说明 |
|---|---|---|---|
| key | string | 是 | 船讯网提供的 API Key(授权码) |
| imo | uint32 | 是 | 船舶 IMO 编号 |
| start_time | string | 是 | 查询开始日期,格式 yyyy-MM-dd,如 2020-03-03 |
| end_time | string | 是 | 查询结束日期,格式 yyyy-MM-dd,如 2024-03-01 |
https://api.shipxy.com/apicall/v3/GetShipPSC?key=您的APIKEY&imo=9811000&start_time=2020-03-03&end_time=2024-03-01| 属性标识 | 名称 | 类型 | 说明 |
|---|---|---|---|
| data | 数据数组 | array | PSC 检查记录列表 |
| └ inspection_time | 检验时间 | string | 格式如 2025-03-01 |
| └ inspection_location | 检验地点 | string | 如 Ningbo |
| └ ship_name | 船舶名称 | string | 船舶名称 |
| └ authorizer | 授权方 | string | 如 Tokyo MOU |
| └ registry | 船籍 | string | 如 Panama |
| └ class_name | 船级社 | string | 如 Lloyd's Register |
| └ ship_owner | 船舶所属公司 | string | 如 Jiayi Shipping Co Ltd-MAI |
| └ defect_number | 缺陷数量 | int | 如 3 |
| └ defect_detail | 缺陷记录详情 | string | 如 Life saving appliances -Lifeboats |
{
"status": 0,
"msg": "Success",
"data": [
{
"inspection_time": "2025-03-01",
"inspection_location": "Ningbo",
"ship_name": "示例船名",
"authorizer": "Tokyo MOU",
"registry": "Panama",
"class_name": "Lloyd's Register",
"ship_owner": "Jiayi Shipping Co Ltd-MAI",
"defect_number": 3,
"defect_detail": "Life saving appliances -Lifeboats"
}
]
}start_time 和 end_time 限定,日期格式为 yyyy-MM-dd。| 项目 | 说明 |
|---|---|
| 请求地址 | https://api.shipxy.com/apicall/v3/GetShipBusinessHistory |
| 请求方式 | GET |
| 参数名 | 类型 | 是否必填 | 说明 |
|---|---|---|---|
| key | string | 是 | 船讯网提供的 API Key(授权码) |
| imo | uint32 | 是 | 船舶 IMO 编号 |
https://api.shipxy.com/apicall/v3/GetShipBusinessHistory?key=您的APIKEY&imo=9811000| 属性标识 | 名称 | 类型 | 说明 |
|---|---|---|---|
| data | 数据数组 | array | 商业变更历史记录列表。字段中数值为空代表此次变更中,该信息无变化 |
| └ date | 时间 | string | 格式如 202503,表示产生商业变更记录的月份 |
| └ ship_name | 船舶名称 | string | 船舶名称 |
| └ flag_country | 船籍国 | string | 如 Panama |
| └ group_code | 集团所有方代码 | int | 如 1803477 |
| └ group_company | 集团所有方名称 | string | 如 COSCO Shipping Development |
| └ group_country | 集团所有方所属国家 | string | 如 China, People's Republic of |
| └ ship_manager_code | 船舶管理者代码 | int | 如 1803477 |
| └ ship_manager_company | 船舶管理者名称 | string | 如 COSCO Shipping Development |
| └ ship_manager_country | 船舶管理者所属国家 | string | 如 China, People's Republic of |
| └ operator_code | 船舶经营者代码 | int | 如 1803477 |
| └ operator_company | 船舶经营者名称 | string | 如 COSCO Shipping Development |
| └ operator_country | 船舶经营者所属国家 | string | 如 China, People's Republic of |
| └ registered_code | 注册所有方代码 | int | 如 1803477 |
| └ registered_owner | 注册所有方名称 | string | 如 COSCO Shipping Development |
| └ register_country | 注册所有方所属国家 | string | 如 China, People's Republic of |
| └ doc_code | DOC 公司代码 | int | 如 1803477 |
| └ doc_company | DOC 公司名称 | string | 如 COSCO Shipping Development |
| └ doc_country | DOC 公司所属国家 | string | 如 China, People's Republic of |
{
"status": 0,
"msg": "Success",
"data": [
{
"date": "202503",
"ship_name": "示例船名",
"flag_country": "Panama",
"group_code": 1803477,
"group_company": "COSCO Shipping Development",
"group_country": "China, People's Republic of",
"ship_manager_code": 1803477,
"ship_manager_company": "COSCO Shipping Development",
"ship_manager_country": "China, People's Republic of",
"operator_code": 1803477,
"operator_company": "COSCO Shipping Development",
"operator_country": "China, People's Republic of",
"registered_code": 1803477,
"registered_owner": "COSCO Shipping Development",
"register_country": "China, People's Republic of",
"doc_code": 1803477,
"doc_company": "COSCO Shipping Development",
"doc_country": "China, People's Republic of"
}
]
}date 字段格式为 yyyyMM(年月),如 202503 表示 2025 年 3 月。| 项目 | 说明 |
|---|---|
| 请求地址 | https://api.shipxy.com/apicall/v3/GetShipAccidents |
| 请求方式 | GET |
| 参数名 | 类型 | 是否必填 | 说明 |
|---|---|---|---|
| key | string | 是 | 船讯网提供的 API Key(授权码) |
| imo | uint32 | 是 | 船舶 IMO 编号 |
| start_time | string | 是 | 查询开始日期,格式 yyyy-MM-dd,如 2020-03-03 |
| end_time | string | 是 | 查询结束日期,格式 yyyy-MM-dd,如 2024-03-01 |
https://api.shipxy.com/apicall/v3/GetShipAccidents?key=您的APIKEY&imo=9811000&start_time=2020-03-03&end_time=2024-03-01| 属性标识 | 名称 | 类型 | 说明 |
|---|---|---|---|
| data | 数据数组 | array | 历史事故记录列表 |
| └ sequence | 事故序号 | int | 按 1, 2, 3, 4 依次排列,表示船舶自身的事件序号 |
| └ casualty_id | 事故编号 | string | 如 91021980046795,事故唯一编号 |
| └ ship_name | 事故发生时的船名 | string | 事故发生时的船舶名称 |
| └ accident_data | 事故日期 | string | 格式如 2025-09-17 |
| └ accident_loaction | 事故发生的地点区域 | string | 如 Br.lsles, N.Sea, E.Chnl, Biscay |
| └ accident_type | 事故类型 | string | 见下方事故类型对照表 |
| └ severity_indicator | 事故严重级别程度 | string | Serious 或 Not Serious |
| └ text | 事故详细描述 | string | 详细的文本描述 |
| 中文 | 英文(标准术语) | 说明 |
|---|---|---|
| 碰撞 | Collision | 船舶与另一艘船或物体相撞 |
| 接触 | Contact | 船舶与固定物(如码头、浅滩)发生接触但未严 重损坏 |
| 倾覆 | Foundered | 通常指"沉没"或"倾覆",但需注意:Foundered 不是搁浅 |
| 火灾/爆炸 | Fire/Explosion | 明确区分火灾和爆炸 |
| 船体/机械损坏 | Hull/Mch.Damage | "Mch."是"Mechanical"的缩写,表示机械故障或结构损坏 |
| 战争损失/敌对行为 | War Loss/Hostilities | 因战争、海盗、武装冲突等造成的损失 |
| 失踪 | Missing | 船只失联,无法确认位置 |
| 搁浅/困住 | Wrecked/Stranded | "Wrecked"=沉没;"Stranded"=搁浅在浅滩或礁石上 |
| 其他 | Miscellaneous | 无法归类的其他事故 |
{
"status": 0,
"msg": "Success",
"data": [
{
"sequence": 1,
"casualty_id": "91021980046795",
"ship_name": "CLIPPER",
"accident_data": "2025-09-17",
"accident_loaction": "Br.lsles, N.Sea, E.Chnl, Biscay",
"accident_type": "Fire/Explosion",
"severity_indicator": "Serious",
"text": "CAUGHT FIRE WHILST ANCHORED IN GHUBB DIKNAW OFF AS-SALIF, YEMEN IN LAT. 15 17' 31"
}
]
}start_time 和 end_time 限定,日期格式为 yyyy-MM-dd。accident_type 字段使用英文标准术语,具体含义参考上方事故类型对照表。severity_indicator 仅区分 Serious(严重)和 Not Serious(非严重)两个级别。| 项目 | 说明 |
|---|---|
| 请求地址 | https://api.shipxy.com/apicall/v3/GetShipSMC |
| 请求方式 | GET |
| 参数名 | 类型 | 是否必填 | 说明 |
|---|---|---|---|
| key | string | 是 | 船讯网提供的 API Key(授权码) |
| imo | uint32 | 是 | 船舶 IMO 编号 |
https://api.shipxy.com/apicall/v3/GetShipSMC?key=您的APIKEY&imo=9811000| 属性标识 | 名称 | 类型 | 说明 |
|---|---|---|---|
| data | 数据数组 | array | SMC 证书信息列表 |
| └ ship_name | 船舶名称 | string | 船舶名称 |
| └ registry | 船籍 | string | 如 Panama |
| └ doc_company | DOC 公司名称 | string | 如 Chekka Shipping SA |
| └ certificate_type | 证书类型 | string | 如 Convention |
| └ certificate_reviewer | 证书审核方 | string | 如 ICS |
| └ certificate_issuer | 证书发放方 | string | 如 ICS |
| └ issuance_time | 发放时间 | string | 格式如 2025-03-01 |
| └ expiration_time | 过期时间 | string | 格式如 2025-03-01 |
{
"status": 0,
"msg": "Success",
"data": [
{
"ship_name": "示例船名",
"registry": "Panama",
"doc_company": "Chekka Shipping SA",
"certificate_type": "Convention",
"certificate_reviewer": "ICS",
"certificate_issuer": "ICS",
"issuance_time": "2025-03-01",
"expiration_time": "2025-03-01"
}
]
}certificate_type 通常为 Convention(公约型)或非公约型。