OpenUV
Real-time UV Index Forecast
- Authentication
- API Key
- HTTPS
- Yes
- CORS
- Unknown
- Category
- Weather
- Documentation / URL
- https://www.openuv.io
Overview
OpenUV provides real-time and forecast UV Index data for any location — current UV, daily max, hourly forecast, and UV-protection guidance. A niche but genuinely useful API for sun-exposure apps, health widgets, and outdoor-safety features.
Quick Start
Current UV for a location (replace YOUR_KEY):
curl "https://api.openuv.io/api/v1/uv?lat=33.7756&lng=-84.3963" \
-H "x-access-token: YOUR_KEY"
Daily UV forecast:
curl "https://api.openuv.io/api/v1/forecast?lat=33.7756&lng=-84.3963&dt=2026-08-22T12:00:00Z" \
-H "x-access-token: YOUR_KEY"
Authentication
- Register at openuv.io for a free key.
- Send it as the
x-access-tokenheader.
Rate Limits & Notes
- Free tier: 50 requests/day — enough for a daily widget or scheduled check.
- The response includes
uv(current index),uv_max,uv_max_time, and anozonevalue. - UV Index scale: 0-2 Low, 3-5 Moderate, 6-7 High, 8-10 Very High, 11+ Extreme.
- Requires
lat/lng(decimal degrees) plus optionaldttimestamp for forecasts.
FAQ
Is OpenUV free? Free tier: 50 requests/day; more is paid.
How do I get a key? Register at openuv.io — the key is on your dashboard.
How is the UV Index interpreted? WHO scale: Low (0-2) to Extreme (11+) — the API returns the raw index and max values.