menu

Home

search

Influenza-like Illness[Beta]

Introduction

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)

ILI Forecast

Ambee's ILI API provides access to daily forecasts of Influenza-like Illness (ILI) risk, along with 28 days of weather and pollen data.

Forecast - Geospatial search

Retrieve ILI forecast data using geographic coordinates (latitude/longitude).

Try Playgroundarr
GET
https://api.ambeedata.com/ili/forecast/by-lat-lng
Details
Request
Response

Headers

x-api-key

string
required
Unique key obtained after signup.
Allowed Value:
LANGUAGE_CODE
Default Value:
English

Content-type

string
optional
Default Value:
application/JSON

Accept-Language

string
optional
Specify your language with English as the default language.
Allowed Value:
LANGUAGE_CODE
Default Value:
English

Query Parameters

lat

number
required
Latitude of the search location.
Allowed Value:
Latitude must be between -90 and 90

lng

number
required
Longitude of the search location.
Allowed Value:
Longitude must be between -180 and 180

details

boolean
required
If set to true, the api returns a 28-day daily forecast of pollen and weather as part of the response.

Set false, incase pollen & weather details are not required.

Allowed value:
True
False
Default value:
False
SAMPLE URL
https://api.ambeedata.com/ili/forecast/by-lat-lng?lat=37.7749&lng=-122.4194&details=True
SAMPLE REQUEST
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();

Search

search-icon

All

APIs

Integrations

Webhooks

Map Tiles

Changelog


Was this page helpful?
happy-emoji

Yes

sad-emoji

No