AccuWeather Test API

The Test API from AccuWeather — 1 operation(s) for test.

Operations 1

GET /api/test/linked-scope AccuWeather Example of a Simple Scope and Linked Scope

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-test-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-test-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: AccuWeather One Active Storms Test 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: Test
paths:
  /api/test/linked-scope:
    get:
      tags:
      - Test
      summary: AccuWeather Example of a Simple Scope and Linked Scope
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RecentLocation'
              examples:
                _api_test_linked-scope200Example:
                  summary: Default _api_test_linked-scope 200 response
                  x-microcks-default: true
                  value:
                    id: '500123'
                    key: '347628'
                    name: New York
                    longName: New York
                    displayName: New York
                    localTime: example-value
                    displayTemperature: example-value
                    icon: 6
                    color: example-value
                    isBefore7PM: true
                    isDayTime: true
                    latitude: 40.7128
                    longitude: -74.006
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  schemas:
    RecentLocation:
      type: object
      properties:
        id:
          type:
          - string
          - 'null'
        key:
          type:
          - string
          - 'null'
        name:
          type:
          - string
          - 'null'
        longName:
          type:
          - string
          - 'null'
        displayName:
          type:
          - string
          - 'null'
        localTime:
          type:
          - string
          - 'null'
        displayTemperature:
          type:
          - string
          - 'null'
        icon:
          type:
          - integer
          - 'null'
          format: int32
        color:
          type:
          - string
          - 'null'
        isBefore7PM:
          type: boolean
        isDayTime:
          type: boolean
        latitude:
          type:
          - number
          - 'null'
          format: double
        longitude:
          type:
          - number
          - 'null'
          format: double
      additionalProperties: false