AccuWeather Partner API

The Partner API from AccuWeather — 1 operation(s) for partner.

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-partner-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 email required.

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

OpenAPI Specification

accuweather-partner-api-openapi.yml Raw ↑
openapi: 3.0.1
info:
  title: AccuWeather One Active Storms Partner API
  description: AccuWeather's internal product API for the One platform.
  version: v1
tags:
- name: Partner
paths:
  /api/partner/{locationKey}:
    get:
      tags:
      - Partner
      summary: AccuWeather Retrieve the Partner for a Specific Location
      parameters:
      - name: locationKey
        in: path
        description: The location key to retrieve parnter
        required: true
        schema:
          type: string
        example: '347628'
      - name: language
        in: query
        description: The language for the user.
        schema:
          type: string
        example: example-value
      responses:
        '200':
          description: Partner found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Partner'
              examples:
                _api_partner_locationKey200Example:
                  summary: Default _api_partner_locationKey 200 response
                  x-microcks-default: true
                  value:
                    siteName: New York
                    logo: example-value
                    link: example-value
        '400':
          description: Query parameter was missing or empty
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  schemas:
    Partner:
      type: object
      properties:
        siteName:
          type: string
          nullable: true
        logo:
          type: string
          nullable: true
        link:
          type: string
          nullable: true
      additionalProperties: false
servers:
- url: https://dataservice.accuweather.com
  description: Base URL reconciled from apis.yml