OpenWeatherMap Road Risk API

Route weather, road surface state, and alerts for a track of waypoints.

Documentation

Specifications

Schemas & Data

Other Resources

🔗
Examples
https://raw.githubusercontent.com/api-evangelist/openweathermap/refs/heads/main/examples/current-weather-example.json
🔗
GraphQL
https://raw.githubusercontent.com/api-evangelist/openweathermap/refs/heads/main/graphql/openweathermap-graphql.md
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/openweathermap/refs/heads/main/examples/forecast-five-day-example.json
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/openweathermap/refs/heads/main/examples/one-call-current-example.json
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/openweathermap/refs/heads/main/examples/air-pollution-current-example.json
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/openweathermap/refs/heads/main/examples/geocoding-direct-example.json
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/openweathermap/refs/heads/main/examples/history-city-example.json
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/openweathermap/refs/heads/main/examples/statistical-month-example.json
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/openweathermap/refs/heads/main/examples/accumulated-temperature-example.json
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/openweathermap/refs/heads/main/examples/solar-irradiance-interval-example.json
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/openweathermap/refs/heads/main/examples/road-risk-example.json
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/openweathermap/refs/heads/main/examples/weather-stations-create-example.json
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/openweathermap/refs/heads/main/examples/weather-maps-tile-example.json

OpenAPI Specification

openweathermap-road-risk-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: OpenWeatherMap Accumulated Parameters Road Risk API
  version: 2.5.0
  description: Returns accumulated temperature and accumulated precipitation totals over a user-specified historical time window. Targeted at agricultural and energy-sector applications. Available on Professional and Expert plans.
  contact:
    name: OpenWeather
    url: https://openweathermap.org/api/accumulated-parameters
  license:
    name: Creative Commons Attribution-ShareAlike 4.0 International
    url: https://creativecommons.org/licenses/by-sa/4.0/
servers:
- url: https://history.openweathermap.org/data/2.5/history
  description: Accumulated Parameters API base URL
security:
- appid: []
tags:
- name: Road Risk
  description: Route weather, road surface state, and alerts for a track of waypoints.
paths:
  /data/2.5/roadrisk:
    post:
      operationId: postRoadRisk
      summary: Route Weather And Road Risk
      description: Accepts a track of waypoints with coordinates and timestamps and returns route weather, road surface state, and alert information for each waypoint.
      tags:
      - Road Risk
      parameters:
      - name: appid
        in: query
        required: true
        description: OpenWeather API key.
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RoadRiskRequest'
      responses:
        '200':
          description: Road risk response.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RoadRiskResponseItem'
        '400':
          description: Invalid request parameters.
        '401':
          description: Unauthorized.
        '429':
          description: Too many requests.
components:
  schemas:
    RoadRiskResponseItem:
      type: object
      properties:
        dt:
          type: integer
          format: int64
        coord:
          type: array
          items:
            type: number
            format: float
        weather:
          type: object
          properties:
            temp:
              type: number
              format: float
            wind_speed:
              type: number
              format: float
            wind_deg:
              type: integer
            precipitation_intensity:
              type: number
              format: float
            dew_point:
              type: number
              format: float
        road:
          type: object
          properties:
            state:
              type: integer
              description: Road state code. 0 normal, 16 black ice (US/EU only).
            surface_temp:
              type: number
              format: float
        alerts:
          type: array
          items:
            type: object
            properties:
              sender_name:
                type: string
              event:
                type: string
              severity:
                type: integer
                minimum: 0
                maximum: 4
    RoadRiskRequest:
      type: object
      required:
      - track
      properties:
        track:
          type: array
          items:
            $ref: '#/components/schemas/RoadRiskTrackPoint'
    RoadRiskTrackPoint:
      type: object
      required:
      - lat
      - lon
      - dt
      properties:
        lat:
          type: number
          format: float
        lon:
          type: number
          format: float
        dt:
          type: integer
          format: int64
          description: Unix timestamp. 1 year past to 5 days future.
  securitySchemes:
    appid:
      type: apiKey
      in: query
      name: appid