AccuWeather Active Storms API

The Active Storms API from AccuWeather — 1 operation(s) for active storms.

Operations 1

GET /api/active-storms/{locationKey} AccuWeather Retrieves All Active Global Storms

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/accuweather-active-storms-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

accuweather-active-storms-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: AccuWeather One Active Storms API
  description: AccuWeather's internal product API for the One platform.
  version: v1
servers:
- url: https://dataservice.accuweather.com
  description: Base URL reconciled from apis.yml
tags:
- name: Active Storms
paths:
  /api/active-storms/{locationKey}:
    get:
      tags:
      - Active Storms
      summary: AccuWeather Retrieves All Active Global Storms
      parameters:
      - name: locationKey
        in: path
        description: The location key to retrieve tropical conditions for
        required: true
        schema:
          type: string
        example: '347628'
      - name: Locale
        in: query
        description: ISO 639-2 and ISO 3166-1 code for the locale
        schema:
          type: string
          example: en-us
        example: en-us
      - name: MeasurementDisplay
        in: query
        description: Display type for weather conditions and distance
        schema:
          $ref: '#/components/schemas/MeasurementDisplayType'
        example: Imperial
      - name: WindUnit
        in: query
        description: Additional display type for wind direction
        schema:
          $ref: '#/components/schemas/WindDirectionDisplayType'
        example: Cardinal
      - name: Theme
        in: query
        description: Theme for the application
        schema:
          $ref: '#/components/schemas/ThemeType'
        example: System
      - name: gmtOffset
        in: query
        description: The GMT offset for the user
        schema:
          type: number
          format: float
        example: 42.0
      - name: timeZone
        in: query
        description: The time zone for the user
        schema:
          type: string
        example: example-value
      responses:
        '200':
          description: Storms found
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Storm'
              examples:
                _api_active-storms_locationKey200Example:
                  summary: Default _api_active-storms_locationKey 200 response
                  x-microcks-default: true
                  value:
                  - accuId: 1
                    eventKey: '347628'
                    isActive: true
                    basin: example-value
                    basinId: AL
                    basinSlug: example-value
                    governmentId: 1
                    level: example-value
                    name: New York
                    updatedStormName: New York
                    stormPositions:
                    - coordinates: null
                      dateTime: null
                      localDate: null
                      localDayOfWeek: null
                      dateTimeLabelShort: null
                      dateTimeLabel: null
                      shortDateShortTimeLabel: null
                      direction: null
                      isCurrent: null
                      isHistorical: null
                      isMarked: null
                      isPeak: null
                      latitude: null
                      longitude: null
                      maximumSustainedWind: null
                      maximumSustainedWindValue: null
                      maximumWindGust: null
                      maximumWindGustValue: null
                      windDegrees: null
                      minimumPressure: null
                      position: null
                      speed: null
                      status: null
                      localizedStatus: null
                      statusName: null
                      statusIcon: null
                      statusIconString: null
                      landmarkReferences: null
                      eventKey: null
                    peakPosition:
                      coordinates:
                        type: null
                        coordinates: null
                      dateTime: '2026-04-19T10:00:00Z'
                      localDate: '2026-04-19T10:00:00Z'
                      localDayOfWeek: example-value
                      dateTimeLabelShort: example-value
                      dateTimeLabel: example-value
                      shortDateShortTimeLabel: example-value
                      direction: example-value
                      isCurrent: true
                      isHistorical: true
                      isMarked: true
                      isPeak: true
                      latitude: 40.7128
                      longitude: -74.006
                      maximumSustainedWind: example-value
                      maximumSustainedWindValue: 12.5
                      maximumWindGust: example-value
                      maximumWindGustValue: 12.5
                      windDegrees: 12.5
                      minimumPressure: example-value
                      position: example-value
                      speed: example-value
                      status: example-value
                      localizedStatus: example-value
                      statusName: New York
                      statusIcon: ExtratropicalStorm
                      statusIconString: '6'
                      landmarkReferences:
                      - null
                      eventKey: '347628'
                    start: '2026-04-19T10:00:00Z'
                    startEpoch: 1
                    end: '2026-04-19T10:00:00Z'
                    localStart: '2026-04-19T10:00:00Z'
                    localEnd: '2026-04-19T10:00:00Z'
                    year: 1
                    isFuture: true
                    stormLink: example-value
                    localizedStartDate: example-value
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  schemas:
    StormPosition:
      type: object
      properties:
        coordinates:
          $ref: '#/components/schemas/Polygon'
        dateTime:
          type:
          - string
          - 'null'
          format: date-time
        localDate:
          type:
          - string
          - 'null'
          format: date-time
        localDayOfWeek:
          type:
          - string
          - 'null'
        dateTimeLabelShort:
          type:
          - string
          - 'null'
        dateTimeLabel:
          type:
          - string
          - 'null'
        shortDateShortTimeLabel:
          type:
          - string
          - 'null'
        direction:
          type:
          - string
          - 'null'
        isCurrent:
          type:
          - boolean
          - 'null'
        isHistorical:
          type:
          - boolean
          - 'null'
        isMarked:
          type: boolean
        isPeak:
          type:
          - boolean
          - 'null'
        latitude:
          type:
          - number
          - 'null'
          format: double
        longitude:
          type:
          - number
          - 'null'
          format: double
        maximumSustainedWind:
          type:
          - string
          - 'null'
        maximumSustainedWindValue:
          type:
          - number
          - 'null'
          format: float
        maximumWindGust:
          type:
          - string
          - 'null'
        maximumWindGustValue:
          type:
          - number
          - 'null'
          format: float
        windDegrees:
          type:
          - number
          - 'null'
          format: float
        minimumPressure:
          type:
          - string
          - 'null'
        position:
          type:
          - string
          - 'null'
        speed:
          type:
          - string
          - 'null'
        status:
          type:
          - string
          - 'null'
        localizedStatus:
          type:
          - string
          - 'null'
        statusName:
          type:
          - string
          - 'null'
          readOnly: true
        statusIcon:
          $ref: '#/components/schemas/StormIcon'
        statusIconString:
          type:
          - string
          - 'null'
          readOnly: true
        landmarkReferences:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/LandmarkReference'
        eventKey:
          type:
          - string
          - 'null'
      additionalProperties: false
    StormIcon:
      enum:
      - ExtratropicalStorm
      - Subtropical
      - Category0
      - Category1
      - Category2
      - Category3
      - Category4
      - Category5
      - TropicalRainStorm
      - TropicalDepression
      type: string
    Storm:
      type: object
      properties:
        accuId:
          type:
          - integer
          - 'null'
          format: int32
        eventKey:
          type:
          - string
          - 'null'
        isActive:
          type: boolean
        basin:
          type:
          - string
          - 'null'
          readOnly: true
        basinId:
          $ref: '#/components/schemas/BasinId'
        basinSlug:
          type:
          - string
          - 'null'
        governmentId:
          type:
          - integer
          - 'null'
          format: int32
        level:
          type:
          - string
          - 'null'
        name:
          type:
          - string
          - 'null'
        updatedStormName:
          type:
          - string
          - 'null'
        stormPositions:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/StormPosition'
        peakPosition:
          $ref: '#/components/schemas/StormPosition'
        start:
          type:
          - string
          - 'null'
          format: date-time
        startEpoch:
          type:
          - integer
          - 'null'
          format: int32
        end:
          type:
          - string
          - 'null'
          format: date-time
        localStart:
          type:
          - string
          - 'null'
          format: date-time
        localEnd:
          type:
          - string
          - 'null'
          format: date-time
        year:
          type: integer
          format: int32
        isFuture:
          type: boolean
        stormLink:
          type:
          - string
          - 'null'
        localizedStartDate:
          type:
          - string
          - 'null'
      additionalProperties: false
    MeasurementDisplayType:
      enum:
      - Metric
      - Imperial
      - Hybrid
      type: string
    WindDirectionDisplayType:
      enum:
      - Cardinal
      - Degrees
      type: string
    ThemeType:
      enum:
      - Light
      - Dark
      - System
      type: string
    BasinId:
      enum:
      - AL
      - EP
      - SI
      - NI
      - CP
      - NP
      - SP
      type: string
    LandmarkReference:
      type: object
      properties:
        landmark:
          type:
          - string
          - 'null'
        distance:
          type:
          - string
          - 'null'
      additionalProperties: false
    Polygon:
      type: object
      properties:
        type:
          type:
          - string
          - 'null'
        coordinates:
          type:
          - array
          - 'null'
          items:
            type: array
            items:
              type: array
              items:
                type: number
                format: double
      additionalProperties: false