The Ambee ILI API provides a daily forecast of influenza-like illness risk, along with comprehensive pollen and weather data for the next 30 days. The API collects data from multiple sources, including health surveillance systems, weather forecasts, and pollen data, to deliver a comprehensive risk assessment for ILI.
Key features include ILI risk levels, 30-day forecasts for pollen counts (tree, grass, weed), temperature, humidity, and wind speed, and the ability to correlate these factors with ILI incidence.
Supported regions
United States & Germany (excluding Hawaii and other smaller islands)
Ambee's ILI API provides access to daily forecasts of Influenza-like Illness (ILI) risk, along with 28 days of weather and pollen data.
Retrieve ILI forecast data using geographic coordinates (latitude/longitude).
x-api-key
Content-type
Accept-Language
lat
lng
details
Set false, incase pollen & weather details are not required.
https://api.ambeedata.com/ili/forecast/by-lat-lng?lat=37.7749&lng=-122.4194&details=True
const http = require("https");
const options = {
"method": "GET",
"hostname": "api.ambeedata.com",
"port": null,
"path": "/ili/forecast/by-lat-lng?lat=12.9889055&lng=77.574044&details=True",
"headers": {
"x-api-key": "API_KEY",
"Content-type": "application/json"
}
};
const req = http.request(options, function (res) {
const chunks = [];
res.on("data", function (chunk) {
chunks.push(chunk);
});
res.on("end", function () {
const body = Buffer.concat(chunks);
console.log(body.toString());
});
});
req.end();
Next
Playground
Yes
No