Storm List
Get a list of tropical cyclones for the last 2 years in major ocean basins around the world.
Only the coastal areas of China are supported now, i.e.
basin=NP
Endpoint#
GET /v7/tropical/storm-listParameters#
Query parameters
-
basin(required)The basin where the storm needs to be queried. For now, only support
NP.ALNorth AtlanticEPEastern PacificNPNorthWest PacificSPSouthWestern PacificNINorth Indian North Indian OceanSISouth Indian South Indian Ocean
-
year(required) Support to query storm of this year and last year, e.g.,year=2020
Request example#
curl -X GET --compressed \
-H 'Authorization: Bearer your_token' \
'https://your-api-host/v7/tropical/storm-list?basin=NP&year=2023'
Replace your_token and your_api_host with your JWT Authentication and API Host
Response#
{
"code": "200",
"updateTime": "2020-12-31T16:00+00:00",
"fxLink": "https://www.qweather.com",
"storm": [
{
"id": "NP_2022",
"name": "Vamco",
"basin": "NP",
"year": "2020",
"isActive": "0"
},
{
"id": "NP_2021",
"name": "Etau",
"basin": "NP",
"year": "2020",
"isActive": "0"
},
{
"id": "NP_2020",
"name": "Atsani",
"basin": "NP",
"year": "2020",
"isActive": "0"
},
{
"id": "NP_2019",
"name": "Goni",
"basin": "NP",
"year": "2020",
"isActive": "0"
},
{
"id": "NP_2018",
"name": "Molave",
"basin": "NP",
"year": "2020",
"isActive": "0"
},
{
"id": "NP_2017",
"name": "Saudel",
"basin": "NP",
"year": "2020",
"isActive": "0"
},
{
"id": "NP_200012",
"name": "Unnamed",
"basin": "NP",
"year": "2020",
"isActive": "0"
},
{
"id": "NP_2016",
"name": "Nangka",
"basin": "NP",
"year": "2020",
"isActive": "0"
},
{
"id": "NP_2015",
"name": "Linfa",
"basin": "NP",
"year": "2020",
"isActive": "0"
},
{
"id": "NP_2014",
"name": "Chan-hom",
"basin": "NP",
"year": "2020",
"isActive": "0"
},
{
"id": "NP_2013",
"name": "Kujira",
"basin": "NP",
"year": "2020",
"isActive": "0"
},
{
"id": "NP_2012",
"name": "Dolphin",
"basin": "NP",
"year": "2020",
"isActive": "0"
},
{
"id": "NP_2011",
"name": "Noul",
"basin": "NP",
"year": "2020",
"isActive": "0"
},
{
"id": "NP_2010",
"name": "Haishen",
"basin": "NP",
"year": "2020",
"isActive": "0"
},
{
"id": "NP_2009",
"name": "Maysak",
"basin": "NP",
"year": "2020",
"isActive": "0"
},
{
"id": "NP_2008",
"name": "Bavi",
"basin": "NP",
"year": "2020",
"isActive": "0"
},
{
"id": "NP_2007",
"name": "Higos",
"basin": "NP",
"year": "2020",
"isActive": "0"
},
{
"id": "NP_2006",
"name": "Mekkhala",
"basin": "NP",
"year": "2020",
"isActive": "0"
},
{
"id": "NP_2005",
"name": "Jangmi",
"basin": "NP",
"year": "2020",
"isActive": "0"
},
{
"id": "NP_2004",
"name": "Hagupit",
"basin": "NP",
"year": "2020",
"isActive": "0"
},
{
"id": "NP_2003",
"name": "Sinlaku",
"basin": "NP",
"year": "2020",
"isActive": "0"
},
{
"id": "NP_2002",
"name": "Nuri",
"basin": "NP",
"year": "2020",
"isActive": "0"
},
{
"id": "NP_2001",
"name": "Vongfong",
"basin": "NP",
"year": "2020",
"isActive": "0"
}
],
"refer": {
"sources": [
"https://developer.qweather.com/attribution.html"
],
"license": [
"QWeather Developers License"
]
}
}
-
fxLinkuri Responsive web page of this data, for embedded in website or APP -
stormobject Tropical cyclone list-
idstring Storm ID -
namestring Storm name -
basinstring The basin of the storm -
yearstring Year of the storm -
isActivestring Whether it is an active storm?1= Active and0= Stopped
-
-
referobject Data sources and licensing information-
sourcesarray Data source and other statements, may be null -
licensearray Data license, may be null
-