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-list

Parameters#

Query parameters

  • basin (required)

    The basin where the storm needs to be queried. For now, only support NP.

    • AL North Atlantic
    • EP Eastern Pacific
    • NP NorthWest Pacific
    • SP SouthWestern Pacific
    • NI North Indian North Indian Ocean
    • SI South 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

Try it

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"
    ]
  }
}
  • code string Status code
  • updateTime date-time API latest update time
  • fxLink uri Responsive web page of this data, for embedded in website or APP
  • storm object Tropical cyclone list
    • id string Storm ID
    • name string Storm name
    • basin string The basin of the storm
    • year string Year of the storm
    • isActive string Whether it is an active storm? 1 = Active and 0 = Stopped
  • refer object Data sources and licensing information
    • sources array Data source and other statements, may be null
    • license array Data license, may be null