← Back to Dashboard

ODWeather

WeatherActiveCORS ReadyUnknownAuth: API KeyDoc: Swagger/OpenAPI
Visit Website ↗

Description

Weather and weather webcams

✨ AI Summary

ODWeather provides API access to weather information and webcams, with documentation using Swagger/OpenAPI.

Code Example

import requests

api_key = "YOUR_API_KEY"
base_url = "https://api.odweather.com" # Hypothetical base URL
endpoint = "/weather" # Hypothetical endpoint for weather data

params = {
    "api_key": api_key,
    # Add other parameters like city, lat, lon, etc.
    "location": "London"
}

try:
    response = requests.get(f"{base_url}{endpoint}", params=params)
    response.raise_for_status() # Raise an exception for HTTP errors
    data = response.json()
    print(data)
except requests.exceptions.RequestException as e:
    print(f"Error: {e}")

Live Health Metrics

Last 50 checks (10 min intervals)