台风最新坐标轨迹接口

台风最新坐标轨迹接口

会员服务

该接口提供最新的台风列表及其历史坐标、风向、风力等关键信息,用户可以追踪台风的完整运动轨迹。适用于台风监测、气象分析及相关应急响应措施。

会员资源包统一计费,无需单独购买,开通会员包后可直接调用。
单个台风详情
接入点说明
查询当前台风的坐标位置、风向、风力、风速、气压等,可形成一条完整的台风运动轨迹数据线。
接口地址
https://route.showapi.com/342-2?appKey={your_appKey}查看密钥调用帮助
返回格式JSON
请求方式POST/GET
更新频率自查寻之时起进行更新,每次查询缓存12个小时
请求参数
Header 参数
参数名称类型示例值必须描述
content-typeString
application/x-www-form-urlencoded
Post 表单
参数名称类型示例值必须描述
tfidString
202218
台风标识,此标准识对应【当前台风列表】中查出来的tfid
返回参数
该接口返回经 showapi_res_body 系统封装,业务数据均位于该对象内;系统级字段见
返回体
cURL
curl -X POST "https://route.showapi.com/342-2?appKey=YOUR_APPKEY" \
  -H "content-type: application/x-www-form-urlencoded" \
  -d "tfid=202218"
返回示例
JSON
{
	"showapi_res_code": 0,
	"showapi_res_error": "",
	"showapi_res_id":"ce135f6739294c63be0c021b76b6fbff",
    "showapi_res_body": {
		"centerlat": "23.000000",
		"centerlng": "142.300000",
		"endtime": "2015-7-10 11:00:00",
		"enname": "Chan-hom",
		"isactive": "1",
		"land": [],
		"name": "灿鸿",
		"points": [
			{
				"lat": "25.80",
				"lng": "125.30",
				"movedirection": "北西",
				"movespeed": "20",
				"power": "16",
				"pressure": "935",
				"radius10": "120",
				"radius7": "450",
				"speed": "52",
				"strong": "超强台风",
				"time": "2015-7-10 9:00:00"
			},
			{
				"lat": "25.90",
				"lng": "125.20",
				"movedirection": "北西",
				"movespeed": "20",
				"power": "16",
				"pressure": "935",
				"radius10": "180",
				"radius7": "450",
				"speed": "52",
				"strong": "超强台风",
				"time": "2015-7-10 10:00:00"
			},
			{
				"lat": "26.00",
				"lng": "125.10",
				"movedirection": "北西",
				"movespeed": "20",
				"power": "16",
				"pressure": "935",
				"radius10": "180",
				"radius7": "450",
				"speed": "52",
				"strong": "超强台风",
				"time": "2015-7-10 11:00:00"
			}
		],
		"starttime": "2015-6-30 20:00:00",
		"tfid": "201509",
		"warnlevel": "white"
	}
}
MCP 服务集成接口级

在 Cherry Studio、ChatBox 等支持 MCP 的客户端中配置,将 {your_appKey} 替换为真实 AppKey(AppKey 管理)。该服务覆盖本接口全部接入点。

MCP JSON
{
  "mcpServers": {
    "showapi-mcp-342": {
      "url": "http://www.showapi.com.cn/mcp/342/{your_appKey}"
    }
  }
}
OpenAPI 文档接口级

标准 OpenAPI 3.0 文档,覆盖本接口全部接入点,可导入 Apifox / Postman / Swagger UI,或供 AI Agent 直接消费。