Weatherbit
Connector for the weatherbit API, generated deterministically from its OpenAPI spec (endpoints, auth, and methods match the spec exactly — nothing is invented).
- Base URL:
https://api.weatherbit.io/v2.0 - Auth:
bearer(pass your key via theapiKeyinput)
Operations
get_alerts_lat_lat_lon_lon— GET /alerts?lat={lat}&lon={lon} — Returns severe weather alerts issued by meteorological agencies - Given a lat/lon.get_bulk_files_file— GET /bulk/files/{file} — Download pre-generated bulk datasetsget_current_airquality_city_city_country_country— GET /current/airquality?city={city}&country={country} — Returns current air quality conditions - Given City and/or State, Country.get_current_airquality_city_id_city_id— GET /current/airquality?city_id={city_id} — Returns current air quality conditions - Given a City ID.get_current_airquality_lat_lat_lon_lon— GET /current/airquality?lat={lat}&lon={lon} — Returns current air quality conditions - Given a lat/lon.get_current_airquality_postal_code_postal_code— GET /current/airquality?postal_code={postal_code} — Returns current air quality conditions - Given a Postal Code.
Inputs
apiKey— your weatherbit API keyoperation— one of the operations above- path parameters when an operation's path contains
{...} query— optional JSON object of query paramsbody— JSON object for create/update ops
Example
operation: get_alerts_lat_lat_lon_lon
apiKey: <your key>