Trackingeyes数据接口
  1. 船东电商运价
Trackingeyes数据接口
  • 新手指南
  • 通用接口
    • 获取token
      POST
    • 获取港口支持代码
      GET
    • 获取船东支持代码
      GET
  • 海运数据接口
    • 海运数据
      • 海运状态码
      • 海运支持清单
      • 海运跟踪
        • 批量运单订阅接口
        • 推送运单动态接口
        • 批量及时更新接口
        • 下载运单详情接口
      • 及时请求
        • 批量及时请求接口
        • 及时请求推送接口
    • 港区数据
      • 中国港区支持清单
      • 中国港区数据订阅接口
      • 中国港区数据推送接口
      • 中国港区数据下载接口
    • 集装箱轨迹
      • 集装箱轨迹接口
    • 船舶AIS
      • 单船搜索接口
      • 船舶定位接口
      • 船舶历史挂港接口
      • 船舶轨迹接口
    • 船舶计划
      • 口岸支持清单
      • 船舶计划查询接口
    • 船东电商运价
      • 运价支持清单
      • 运价查询接口
        POST
    • 电子围栏
      • 电子围栏查询接口
  • 船期表接口
    • 港到港船期表
      • 船期支持清单
      • 国内船期查询接口
      • 船期分页推送接口
    • 航线规划路径
      • 航线规划路径接口
    • 航次挂靠路径
      • 航次挂靠路径支持清单
      • 航次挂靠路径查询接口
  • 空运数据接口
    • 空运状态码
    • 空运支持清单
    • 空运跟踪
      • 批量运单订阅接口
      • 推送运单动态接口
      • 批量运单下载接口
  • 陆运数据接口
    • EIR(电子设备交接单)
      • EIR支持清单
      • EIR获取接口
    • 场站数据
      • 场站支持清单
      • 场站数据订阅接口
      • 场站数据推送接口
    • 车辆GPS
      • 车辆定位接口
      • 车辆轨迹接口
  • 关务数据接口
    • 报关状态
      • 报关状态代码表
      • 报关状态订阅接口
      • 报关状态推送接口
      • 下载报关状态接口
    • 舱单数据
      • 舱单数据订阅接口
      • 舱单数据推送接口
      • 下载舱单数据接口
  • 海外数据接口
    • 全球码头数据
      • 全球码头支持清单
      • 全球码头数据订阅接口
      • 全球码头数据推送接口
      • 全球码头数据下载接口
    • 美国清关状态
      • 清关状态代码
      • 美国清关数据查询接口
  • 快递数据接口
    • 国家、地区ISO Alpha-3代码表
    • 主状态代码表
    • 子状态代码表
    • 承运商代码表
    • 承运商集团表
    • 特殊承运人代码表
    • 快递数据订阅接口
    • 快递数据推送接口
    • 快递数据下载接口
  • 其他数据接口
    • 通用港杂费
      • 港杂费代码清单
      • 通用港杂费查询接口
    • 操作时间
      • 操作时间查询接口
  1. 船东电商运价

运价查询接口

POST
/api/spotrate/getSpotrateList
*所有的日期字段都是字符串类型,格式为 "yyyy-MM-dd", 如果没有值则为空字符串""。*

请求参数

Query 参数

Body 参数application/json

示例
{
    "polCd": "CNXMN",
    "podCd": "NLRTM",
    "carrierCodeList": [
        "COSCO",
        "CMA"
    ],
    "etd": "2025-03-10",
    "weeksOut": "1"
}

请求示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.trackingeyes.com/api/spotrate/getSpotrateList?companyCode&orgCode&token' \
--header 'Content-Type: application/json' \
--data-raw '{
    "polCd": "CNXMN",
    "podCd": "NLRTM",
    "carrierCodeList": [
        "COSCO",
        "CMA"
    ],
    "etd": "2025-03-10",
    "weeksOut": "1"
}'

返回响应

🟢200成功
application/json
Body

示例
{
    "code": 200,
    "codeDesc": "success",
    "message": "Operation succeeded",
    "result": [
        {
            "polCd": "CNXMN",
            "podCd": "NLRTM",
            "carrierCd": "CMA",
            "vessel": "COS TBN 25",
            "voyage": "0PFNUW1MA",
            "transClause": "CY-CY",
            "etd": "2025-04-30",
            "eta": "2025-06-06",
            "expireStart": "2025-04-14",
            "expireEnd": "2025-04-30",
            "basePriceList": [
                {
                    "ctnType": "20GP",
                    "basePrice": "1460.00",
                    "totalPrice": "1485.00",
                    "currency": "USD"
                },
                {
                    "ctnType": "40GP",
                    "basePrice": "2520.00",
                    "totalPrice": "2545.00",
                    "currency": "USD"
                },
                {
                    "ctnType": "40HQ",
                    "basePrice": "2520.00",
                    "totalPrice": "2545.00",
                    "currency": "USD"
                }
            ],
            "transitPort": [],
            "localChargeList": [
                {
                    "feeName": "单证费",
                    "feeCode": "doc_fee",
                    "type": 0,
                    "fee": 450
                },
                {
                    "feeName": "出口单证费",
                    "feeCode": "edoc_fee",
                    "type": 0,
                    "fee": 100
                },
                {
                    "feeName": "电放费",
                    "feeCode": "tlx_fee",
                    "type": 0,
                    "fee": 450
                },
                {
                    "feeName": "信息传输费",
                    "feeCode": "info_fee",
                    "type": 0,
                    "fee": 5
                },
                {
                    "feeName": "码头操作费",
                    "feeCode": "othc_fee",
                    "type": 1,
                    "fee": {
                        "20gp": "550",
                        "40gp": "825",
                        "40hq": "825",
                        "45hq": "1020",
                        "20rf": "615",
                        "40rh": "915",
                        "20ot": "725",
                        "40ot": "1075"
                    }
                },
                {
                    "feeName": "封志费",
                    "feeCode": "seal_fee",
                    "type": 1,
                    "fee": {
                        "20gp": "30",
                        "40gp": "30",
                        "40hq": "30",
                        "45hq": "30",
                        "20rf": "30",
                        "40rh": "30",
                        "20ot": "30",
                        "40ot": "30"
                    }
                },
                {
                    "feeName": "设备交接单费",
                    "feeCode": "eir_fee",
                    "type": 1,
                    "fee": {
                        "20gp": "35",
                        "40gp": "35",
                        "40hq": "35",
                        "45hq": "35",
                        "20rf": "35",
                        "40rh": "35",
                        "20ot": "35",
                        "40ot": "35"
                    }
                }
            ]
        },
        {
            "polCd": "CNXMN",
            "podCd": "NLRTM",
            "carrierCd": "COSCO",
            "vessel": "CMA CGM IGUACU",
            "voyage": "017W",
            "transClause": "CY-CY",
            "etd": "2025-05-02",
            "eta": "2025-06-07",
            "expireStart": "2025-05-01",
            "expireEnd": "2025-05-12",
            "basePriceList": [
                {
                    "ctnType": "20GP",
                    "basePrice": "2150.00",
                    "totalPrice": "2175.00",
                    "currency": "USD"
                },
                {
                    "ctnType": "40GP",
                    "basePrice": "3600.00",
                    "totalPrice": "3625.00",
                    "currency": "USD"
                },
                {
                    "ctnType": "40HQ",
                    "basePrice": "3600.00",
                    "totalPrice": "3625.00",
                    "currency": "USD"
                }
            ],
            "transitPort": [
                {
                    "pod": "SINGAPORE",
                    "podCode": "SGSIN",
                    "wharf": "",
                    "vessel": "CMA CGM RIVOLI",
                    "voyage": "016W",
                    "lineCode": "AEU6",
                    "eta": "2025-05-08",
                    "etd": "2025-05-08",
                    "mode": "VESSEL"
                },
                {
                    "pod": "",
                    "podCode": "",
                    "wharf": "",
                    "vessel": "",
                    "voyage": "",
                    "lineCode": "",
                    "eta": "",
                    "etd": "",
                    "mode": ""
                },
                {
                    "pod": "",
                    "podCode": "",
                    "wharf": "",
                    "vessel": "",
                    "voyage": "",
                    "lineCode": "",
                    "eta": "",
                    "etd": "",
                    "mode": ""
                }
            ],
            "localChargeList": [
                {
                    "feeName": "单证费",
                    "feeCode": "doc_fee",
                    "type": 0,
                    "fee": 500
                },
                {
                    "feeName": "出口单证费",
                    "feeCode": "edoc_fee",
                    "type": 0,
                    "fee": 100
                },
                {
                    "feeName": "电放费",
                    "feeCode": "tlx_fee",
                    "type": 0,
                    "fee": 300
                },
                {
                    "feeName": "信息传输费",
                    "feeCode": "info_fee",
                    "type": 0,
                    "fee": 5
                },
                {
                    "feeName": "码头操作费",
                    "feeCode": "othc_fee",
                    "type": 1,
                    "fee": {
                        "20gp": "646",
                        "40gp": "982",
                        "40hq": "982",
                        "45hq": "1448",
                        "20rf": "798",
                        "40rh": "1241",
                        "20ot": "798",
                        "40ot": "1241"
                    }
                },
                {
                    "feeName": "封志费",
                    "feeCode": "seal_fee",
                    "type": 1,
                    "fee": {
                        "20gp": "30",
                        "40gp": "30",
                        "40hq": "30",
                        "45hq": "30",
                        "20rf": "30",
                        "40rh": "30",
                        "20ot": "30",
                        "40ot": "30"
                    }
                },
                {
                    "feeName": "设备交接单费",
                    "feeCode": "eir_fee",
                    "type": 1,
                    "fee": {
                        "20gp": "30",
                        "40gp": "30",
                        "40hq": "30",
                        "45hq": "30",
                        "20rf": "30",
                        "40rh": "30",
                        "20ot": "30",
                        "40ot": "30"
                    }
                }
            ]
        }
    ]
}
修改于 2025-04-29 07:17:25
上一页
运价支持清单
下一页
电子围栏查询接口
Built with