AccuWeather Current API

The Current API from AccuWeather — 1 operation(s) for current.

Operations 1

GET /api/current/{locationKey} AccuWeather Retrieves a the Latest Weather Conditions for a Location

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-current-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-current-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: AccuWeather One Active Storms Current 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: Current
paths:
  /api/current/{locationKey}:
    get:
      tags:
      - Current
      summary: AccuWeather Retrieves a the Latest Weather Conditions for a Location
      parameters:
      - name: locationKey
        in: path
        description: The location key to retrieve weather 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
      responses:
        '200':
          description: Current conditions found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FavoriteLocation'
              examples:
                _api_current_locationKey200Example:
                  summary: Default _api_current_locationKey 200 response
                  x-microcks-default: true
                  value:
                    id: '500123'
                    key: '347628'
                    name: New York
                    longName: New York
                    displayName: New York
                    displayTemperature: example-value
                    displayHighTemperature: example-value
                    displayLowTemperature: example-value
                    displayRealFeel: example-value
                    displayRealFeelShade: example-value
                    icon: 6
                    conditions: example-value
                    localTime: example-value
                    color: example-value
                    isBefore7PM: true
                    isDayTime: true
                    minuteCastForecast:
                      summary60: example-value
                      minutes:
                      - displayTime: null
                        minute: null
                        color: null
                        dbz: null
                        precipitationType: null
                    numberOfAlerts: 1
                    latitude: 40.7128
                    longitude: -74.006
        '404':
          description: Response was missing or empty
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  schemas:
    MeasurementDisplayType:
      enum:
      - Metric
      - Imperial
      - Hybrid
      type: string
    WindDirectionDisplayType:
      enum:
      - Cardinal
      - Degrees
      type: string
    MinuteCastForecast:
      type: object
      properties:
        summary60:
          type:
          - string
          - 'null'
        minutes:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/MinuteCastMinute'
      additionalProperties: false
    ThemeType:
      enum:
      - Light
      - Dark
      - System
      type: string
    FavoriteLocation:
      type: object
      properties:
        id:
          type:
          - string
          - 'null'
        key:
          type:
          - string
          - 'null'
        name:
          type:
          - string
          - 'null'
        longName:
          type:
          - string
          - 'null'
        displayName:
          type:
          - string
          - 'null'
        displayTemperature:
          type:
          - string
          - 'null'
        displayHighTemperature:
          type:
          - string
          - 'null'
        displayLowTemperature:
          type:
          - string
          - 'null'
        displayRealFeel:
          type:
          - string
          - 'null'
        displayRealFeelShade:
          type:
          - string
          - 'null'
        icon:
          type: integer
          format: int32
        conditions:
          type:
          - string
          - 'null'
        localTime:
          type:
          - string
          - 'null'
        color:
          type:
          - string
          - 'null'
        isBefore7PM:
          type: boolean
        isDayTime:
          type: boolean
        minuteCastForecast:
          $ref: '#/components/schemas/MinuteCastForecast'
        numberOfAlerts:
          type:
          - integer
          - 'null'
          format: int32
        latitude:
          type:
          - number
          - 'null'
          format: double
        longitude:
          type:
          - number
          - 'null'
          format: double
      additionalProperties: false
    MinuteCastMinute:
      type: object
      properties:
        displayTime:
          type:
          - string
          - 'null'
        minute:
          type: integer
          format: int32
        color:
          type:
          - string
          - 'null'
        dbz:
          type:
          - number
          - 'null'
          format: float
        precipitationType:
          type:
          - string
          - 'null'
      additionalProperties: false