WeatherDataAI API
Subscribing to WeatherDataAI’s API gives you seamless access to historical and forecast weather data with flexible usage limits. Whether you’re a hobbyist, developer, or enterprise, choosing the right plan ensures you get the API call limits that match your needs.
Select a plan based on your required request volume and scale confidently as your data demands grow. Utilize our easy to use Python package py_weatherdataai – A simple API client for WeatherDataAI.
$19.99
/Month
Starter
Best for: Hobbyists, students, and small personal projects, that require historical data.
- API Calls: 100,000 per month
- 1 request per second
- 30 requests per minute
- 360 requests per hour
- 10,000 total requests per day
$219.99
/Year***
***Subscribe yearly and get 1 month FREE!
$99.99
/Month
Professional
Best for: Startups, developers, and businesses integrating weather data into their applications.
- API Calls: 1,000,000 per month
- 2 requests per second
- 120 requests per minute
- 7,200 requests per hour
- 50,000 total requests per day
$1099.99
/Year***
***Subscribe yearly and get 1 month FREE!
$199.99
/Month
Enterprise
Best for: Large enterprises, machine learning, high-demand applications, and financial groups
- API Calls: 5,000,000 per month
- 5 requests per second
- 300 requests per minute
- 20,000 requests per hour
- 150,000 total requests per day
$2199.99
/Year***
***Subscribe yearly and get 1 month FREE!
Below we provide API details to get you up and running – your welcome email will include these instructions also!
Introduction to WeatherDataAI API
The WeatherDataAI API provides global weather data, allowing users to retrieve historical observations and forecast data based on specific weather variables, date ranges, and geographic locations. The API is optimized for performance using AWS services and rate limiting to ensure reliable and efficient access to weather data.
Features and Capabilities
Retrieve weather data by specifying observation type, variable, date range, and location.
- Snaps latitude/longitude to the nearest valid grid point for accurate data retrieval.
- Returns data in CSV format for easy integration and analysis.
- Efficient querying using for optimal performance – 10 millisecond return time (0.1 seconds)
- Rate limiting per second and per minute to prevent system overload.
Observation Variable Overview
The WeatherDataAI API provides access to 29 observational weather variables. Each of the 13 base variables also has a corresponding ‘_Departure’ variable, indicating the departure from historical averages. This makes a total of 29 variables available for querying (including HDD, CDD and GDD variables)
Variable Abbreviation | Variable Name | Metric Units | Imperial Units |
TP | Total Precipitation | Millimeters (mm) | Inches (in) |
SD | Snow Depth | Centimeters (cm) | Inches (in) |
2T | Average Temperature | Degrees Celsius (°C) | Degrees Fahrenheit (°F) |
MX2T | Maximum Temperature | Degrees Celsius (°C) | Degrees Fahrenheit (°F) |
MN2T | Minimum Temperature | Degrees Celsius (°C) | Degrees Fahrenheit (°F) |
Windspeed | Windspeed | Meters per second (m/s) | Miles per hour (mph) |
10FG | Maximum Gust Speed | Meters per second (m/s) | Miles per hour (mph) |
SP | Surface Pressure | Millibars (mb) | Inches of Mercury (inHg) |
SSR | Surface Solar Radiation | Watts per square meter (W/m²) | BTUs per square foot (BTU/ft²) |
E | Evaporation | Millimeters (mm) | Inches (in) |
TCC | Cloud Cover | Percentage (%) | Percentage (%) |
SWVL1 | Surface Soil Water Volume | Percentage (%) | Percentage (%) |
STL1 | Surface Soil Temperature | Degrees Celsius (°C) | Degrees Fahrenheit (°F) |
HDD | Heating Degree Days | Degree Days (18.4°C Base) | Degree Days (65°F Base) |
CDD | Cooling Degree Days | Degree Days (18.4°C Base) | Degree Days (65°F Base) |
GDD | Growing Degree Days | Degree Days (10°C Base, 30°C Max) | Degree Days (50°F Base, 86°F Max) |
Forecast Variable Overview
The following table lists the available forecast weather variables, their abbreviations, and units. New forecast data (00z daily data) is available 4:00am US Eastern.
Variable Abbreviation | Variable Name | Metric Units | Imperial Units |
TP | Total Precipitation | Millimeters (mm) | Inches (in) |
2T | Average Temperature | Degrees Celsius (°C) | Degrees Fahrenheit (°F) |
MX2T | Maximum Temperature | Degrees Celsius (°C) | Degrees Fahrenheit (°F) |
MN2T | Minimum Temperature | Degrees Celsius (°C) | Degrees Fahrenheit (°F) |
Security and Authentication
WeatherDataAI uses API key authentication to secure endpoints. Include your API key in the request headers as follows: X-API-Key: YOUR_API_KEY
API keys are validated against an authenticated API Keys. Invalid or missing keys result in a 403 error. Dynamic rate limiting is implemented, with the following limits (If the rate limit is exceeded, the API responds with a 429 error):
- Max calls per second (to prevent rapid bursts of traffic).
- Max calls per minute (to ensure fair usage).
Endpoint Details
GET /get-data/{observation_type}/{variable}/{start_date}/{end_date}/{lat}/{lon}/{units}
This endpoint retrieves weather data for the specified observation type, variable, date range, and location. It automatically snaps the latitude and longitude to the closest valid grid point.
Request Parameters
– observation_type: Type of data (‘observation’ or ‘forecast’).
– variable: Weather variable (e.g., 2T for temperature).
– start_date*: Start date in YYYY-MM-DD format.
– end_date*: End date in YYYY-MM-DD format.
– lat: Latitude of the location.
– lon: Longitude of the location.
– units: “Metric” or “Imperial”
– X-API-Key: API key for authentication (in request headers).
*note, you can pull a maximum of 20 years within the same API call
Locations
As shown above in the request parameters, the latitude and longitude of your location is required. Please note, any location ON LAND. WeatherDataAI data only covers land-based variables.
While geocoding is in development, only latitude and longitude will be accepted as the location identify.
If you do not know the latitude/longitude of your location please use a coordinate finder online, such as https://www.latlong.net/
Example Requests and Responses
Example Request: GET /get-data/observation/2T/2023-01-01/2023-01-31/35.6895/139.6917/Metric
Example Response:
Weather_Data_AI_Point_ID,Country,Continent,Region,latitude,longitude,2023-01-01,2023-01-02,…
12345,Japan,Asia,East Asia,35.625,139.625,5.2,6.1,…
Response Format:
The API returns data in CSV (Comma-Separated Values) format. The response is streamed directly, allowing users to download and process the data efficiently. Each row represents weather data for a specific date and location. The first six columns contain metadata about the location, followed by weather variables for the requested date range.
Error Handling
Common Errors:
– 403 Forbidden: Invalid or missing API key.
– 429 Too Many Requests: Rate limit exceeded (per second or per minute).
– 400 Bad Request: Invalid request parameters or date range.
– 500 Internal Server Error: General server error.
Rate Limiting and Subscription Plans
The WeatherDataAI API implements dynamic rate limiting to ensure fair usage and protect database integrity. This is achieved through the following mechanisms:
– API calls per second: Prevents rapid bursts that could overwhelm the system.
– API calls per minute: Maintains a steady flow of requests across all subscribers.
However, the total usage is calculated based on the number of days of data requested in each API call. For example, if a request is made for 10 days of data, it counts as 10 units of usage. This approach ensures accurate tracking of data consumption and protects the integrity of the database.
Usage Calculation
Total usage is calculated using the following formula:
Total Usage = Number of days of data requested per API Call
Example:
– A request for weather data from January 1, 2023 to January 10, 2023 is counted as 10 units of usage.
– If another request is made for 5 days of data, the total usage becomes 15 units.
This method allows users to make flexible API calls while maintaining an accurate count of their data usage.
Tracking Usage
The WeatherDataAI API has a secondary endpoint for usage (total number of datapoints requested) tracking. This endpoint allows you to check your monthly usage (current month or specified month).
API key required: Every request must include a valid X-API-Key header. Current month is default: If no month parameter is provided, the API returns usage for the current month. Allowed formats: The month parameter must be in YYYY-MM format.
Here is an example API call to obtain your usage:
curl -X “GET” “https://api.weatherdata.ai/usage?month=2025-023” -H “X-API-Key: your_api_key_here”
Overage Charges
If a user exceeds their subscription plan’s limit, overages are charged at a rate of $0.01 per day of data over the limit. This ensures that users can continue to access the data they need without interruptions, while maintaining fair usage for all subscribers.
Example:
– If a user is subscribed to a plan with a monthly limit of 1,000 days of data, but they request a total of 1,200 days, they will be charged an overage fee of $0.01 x 200 = $2.00 for the additional 200 days.
This overage fee will be Invoiced to the next billing cycle.
If the rate limit is exceeded, the API returns a 429 error with a message to try again later. Overages are automatically calculated and billed at the end of each billing cycle.
Contact Information
For support and inquiries, please contact:
Email: support@weatherdata.ai
Website: www.weatherdata.ai
Python Library – py_weatherdataai
py_weatherdataai – A simple Python client for accessing the WeatherDataAI API to fetch both historical observations and forecast data. Returns results as Pandas DataFrames by default, or raw CSV text if desired.
Installation
pip install py_weatherdataai
Usage
1. Import and Initialize
from py_weatherdataai.client import WeatherDataAI
client = WeatherDataAI(“YOUR_API_KEY”)
2. Get Observations (DataFrame)
obs_df = client.get_observation(“2T”, “2024-02-15”, “2024-02-20”, -0.125, -49.625, “Metric”)
print(obs_df.head())
3. Get Forecast (DataFrame)
forecast_df = client.get_forecast(“TP”, “2024-03-15”, “2024-03-20”, -0.125, -49.625, “Imperial”)
print(forecast_df.head())
API Request Examples in Other Common Languages
Python
Using the requests library in Python:
“`python
import requests
### Get Weather Data
url = ‘https://api.weatherdata.ai/get-data/observation/2T/2023-01-01/2023-01-31/35.6895/139.6917/Metric’
headers = {‘X-API-Key’: ‘YOUR_API_KEY’}
response = requests.get(url, headers=headers)
if response.status_code == 200:
print(response.text)
else:
print(‘Error:’, response.status_code)
### Get API Monthly Usage
url = ‘https://api.weatherdata.ai/usage’
headers = {‘X-API-Key’: ‘YOUR_API_KEY’}
response = requests.get(url, headers=headers)
if response.status_code == 200:
print(response.json()) # Print usage data as JSON
else:
print(‘Error:’, response.status_code, response.text)
“`
JavaScript (Fetch)
Using Fetch API in the browser:
“`js
const url = ‘https://api.weatherdata.ai/get-data/observation/2T/2023-01-01/2023-01-31/35.6895/139.6917/Metric”;
fetch(url, {
method: ‘GET’,
headers: { ‘X-API-Key’: ‘YOUR_API_KEY’ }
})
.then(response => response.text())
.then(data => console.log(data))
.catch(error => console.error(‘Error:’, error));
“`
JavaScript (Axios)
Using Axios in Node.js:
“`js
const axios = require(‘axios’);
const url = ‘https://api.weatherdata.ai/get-data/observation/2T/2023-01-01/2023-01-31/35.6895/139.6917/Metric”;
axios.get(url, { headers: { ‘X-API-Key’: ‘YOUR_API_KEY’ }})
.then(response => console.log(response.data))
.catch(error => console.error(‘Error:’, error));
“`
cURL
Using cURL from the command line:
“`sh
curl -H ‘X-API-Key: YOUR_API_KEY’ \
‘https://api.weatherdata.ai/get-data/observation/2T/2023-01-01/2023-01-31/35.6895/139.6917/Metric”
“`
PHP
Using cURL in PHP:
“`php
$url = ‘https://api.weatherdata.ai/get-data/observation/2T/2023-01-01/2023-01-31/35.6895/139.6917/Metric”;
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(‘X-API-Key: YOUR_API_KEY’));
$response = curl_exec($ch);
curl_close($ch);
echo $response;
“`
Ruby
Using Net::HTTP in Ruby:
“`ruby
require ‘net/http’
require ‘uri’
uri = URI(‘https://api.weatherdata.ai/get-data/observation/2T/2023-01-01/2023-01-31/35.6895/139.6917/Metric”)
request = Net::HTTP::Get.new(uri)
request[‘X-API-Key’] = ‘YOUR_API_KEY’
response = Net::HTTP.start(uri.hostname, uri.port, use_ssl: true) do |http|
http.request(request)
end
puts response.body
“`