# Ambee

Ambee provides real-time, hyperlocal environmental data through APIs, offering insights into air quality, weather, pollen, and more.

- **Category:** developer tools
- **Auth:** API_KEY
- **Composio Managed App Available?** N/A
- **Tools:** 27
- **Triggers:** 0
- **Slug:** `AMBEE`
- **Version:** 20260227_00

## Tools

### Geocode by Place

**Slug:** `AMBEE_GEOCODE_BY_PLACE`

Tool to transform a place name or address into geographic coordinates. Use after confirming the location name to get precise latitude and longitude.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `place` | string | Yes | Name of the location to be searched. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Air Quality by City

**Slug:** `AMBEE_GET_AIR_QUALITY_BY_CITY`

Tool to retrieve real-time air quality data for a specific city. Use after obtaining a valid city name when current AQI and pollutant levels are needed.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `city` | string | Yes | Name of the city to search. |
| `limit` | integer | No | Number of records to return. Must be >=1. Defaults to 1. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Air Quality by Country Code

**Slug:** `AMBEE_GET_AIR_QUALITY_BY_COUNTRY_CODE`

Tool to retrieve real-time air quality data for a specific country using a 3-letter ISO code. Use after acquiring the country code and when you want a national overview of air quality.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `limit` | integer | No | Number of air quality records to return from different monitoring stations or time periods. Must be between 1 and 5. Defaults to 1. |
| `countryCode` | string | Yes | 3-letter ISO country code (e.g., 'GBR' for United Kingdom, 'USA' for United States, 'IND' for India). Returns air quality data from monitoring stations within the specified country. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Air Quality by Latitude and Longitude

**Slug:** `AMBEE_GET_AIR_QUALITY_BY_LAT_LNG`

Tool to retrieve real-time air quality data for a specific latitude and longitude. Use when you need hyper-local air quality readings for given coordinates.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `lat` | number | Yes | Latitude of the search location. Must be between -90 and 90 degrees. |
| `lng` | number | Yes | Longitude of the search location. Must be between -180 and 180 degrees. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Air Quality by Postal Code

**Slug:** `AMBEE_GET_AIR_QUALITY_BY_POSTAL_CODE`

Retrieve real-time air quality data for a specific postal code and country. Returns comprehensive air quality metrics including pollutant concentrations (PM2.5, PM10, CO, NO2, O3, SO2), Air Quality Index (AQI) with category (Good/Moderate/Unhealthy), and location details. Data is updated hourly with 500-meter spatial resolution following US EPA standards. Use this when you need hyper-local air quality insights for a specific postal code.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `postalCode` | string | Yes | Postal code of the location (format varies by country, e.g., '560020' for India, '10001' for USA, 'SW1A 1AA' for UK). |
| `countryCode` | string | Yes | 3-letter ISO 3166-1 alpha-3 country code (e.g., 'IND' for India, 'USA' for United States, 'GBR' for United Kingdom). |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Air Quality Forecast by Latitude and Longitude

**Slug:** `AMBEE_GET_AIR_QUALITY_FORECAST_BY_LAT_LNG`

Tool to retrieve air quality forecast for a specific latitude and longitude. Use when you need predicted air quality data up to 48 hours in advance based on geographic coordinates.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `lat` | number | Yes | Latitude of the search location, must be between -90 and 90 degrees |
| `lng` | number | Yes | Longitude of the search location, must be between -180 and 180 degrees |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Air Quality History by Latitude and Longitude

**Slug:** `AMBEE_GET_AIR_QUALITY_HISTORY_BY_LAT_LNG`

Tool to retrieve historical air quality data for a specific latitude and longitude. Use when you need past air quality readings for given coordinates within the last 2 days.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `to` | string | No | Ending timestamp of the period to search for in the format YYYY-MM-DD hh:mm:ss |
| `lat` | number | Yes | Latitude of the search location, must be between -90 and 90 degrees |
| `lng` | number | Yes | Longitude of the search location, must be between -180 and 180 degrees |
| `from` | string | Yes | Starting timestamp of the period to search for in the format YYYY-MM-DD hh:mm:ss. API only provides past 2 days of data. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Retrieve latest natural disasters by continent

**Slug:** `AMBEE_GET_DISASTERS_BY_CONTINENT_LATEST`

Tool to retrieve latest natural disaster data for a specific continent. Use when you need up-to-date disaster information by continent code.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `page` | integer | No | Page number to retrieve |
| `limit` | integer | No | Number of results per page |
| `continent` | string ("AFR" | "ANT" | "ASIA" | "AUS" | "EUR" | "NAR" | "SAR" | "OCEAN") | Yes | Continent code: AFR (Africa), ANT (Antarctica), ASIA (Asia), AUS (Australia), EUR (Europe), NAR (North America), SAR (South America), OCEAN (Oceania) |
| `eventType` | string ("TN" | "EQ" | "TC" | "WF" | "FL" | "ET" | "DR" | "SW" | "SI" | "VO" | "LS" | "Misc") | No | Optional disaster event type code to filter results |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get historical natural disasters by date range

**Slug:** `AMBEE_GET_DISASTERS_HISTORY`

Tool to retrieve global historical natural disaster data with date range filtering. Use when you need to search disaster events from a specific starting date onwards.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `from` | string | Yes | Starting timestamp of the search period in format 'YYYY-MM-DD hh:mm:ss' (e.g., '2024-07-01 15:00:00') |
| `page` | integer | No | Page number for pagination |
| `limit` | integer | No | Number of records to return per page |
| `eventType` | string ("TN" | "EQ" | "TC" | "WF" | "FL" | "ET" | "DR" | "SW" | "SI" | "VO" | "LS" | "Misc") | No | Optional disaster event type code to filter results: TN (Tsunamis), EQ (Earthquakes), TC (Tropical cyclones), WF (Wildfires), FL (Floods), ET (Extreme Temperature), DR (Droughts), SW (Severe storms), SI (Sea Ice), VO (Volcano), LS (Landslides), Misc (Miscellaneous) |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get historical natural disasters by country code

**Slug:** `AMBEE_GET_DISASTERS_HISTORY_BY_COUNTRY_CODE`

Tool to retrieve historical natural disaster data for a country by ISO country code. Use when you need past disaster information for a specific country within a given date range.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `to` | string | Yes | Ending timestamp of the search period in format YYYY-MM-DD HH:MM:SS |
| `from` | string | Yes | Starting timestamp of the search period in format YYYY-MM-DD HH:MM:SS |
| `page` | integer | No | Page number for pagination |
| `limit` | integer | No | Number of records to return |
| `eventType` | string ("TN" | "EQ" | "TC" | "WF" | "FL" | "ET" | "DR" | "SW" | "SI" | "VO" | "LS" | "Misc") | No | Optional disaster event type code to filter results |
| `countryCode` | string | Yes | 3-letter ISO country code (e.g., USA, GBR, IND) |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get historical natural disasters by coordinates

**Slug:** `AMBEE_GET_DISASTERS_HISTORY_BY_LAT_LNG`

Tool to retrieve historical natural disaster data for a specific location by coordinates with date range. Use when you need historical disaster information for a geographic point within the past month.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `to` | string | Yes | Ending timestamp in format 'YYYY-MM-DD HH:MM:SS'. Cannot be in the future. Example: '2026-02-11 23:59:59' |
| `lat` | number | Yes | Latitude of the search location. Must be between -90 and 90 degrees. |
| `lng` | number | Yes | Longitude of the search location. Must be between -180 and 180 degrees. |
| `from` | string | Yes | Starting timestamp in format 'YYYY-MM-DD HH:MM:SS'. Must be within the last month. Example: '2026-02-08 00:00:00' |
| `page` | integer | No | Page number for pagination |
| `limit` | integer | No | Number of disaster records to return per page |
| `eventType` | string ("TN" | "EQ" | "TC" | "WF" | "FL" | "ET" | "DR" | "SW" | "SI" | "VO" | "LS" | "Misc") | No | Optional disaster event type code to filter results |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get latest disasters by country code

**Slug:** `AMBEE_GET_DISASTERS_LATEST_BY_COUNTRY_CODE`

Tool to retrieve latest natural disaster data for a specific country using ISO country code. Use when you need up-to-date disaster information for a particular country.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `page` | integer | No | Page number to retrieve |
| `limit` | integer | No | Number of results per page |
| `eventType` | string ("TN" | "EQ" | "TC" | "WF" | "FL" | "ET" | "DR" | "SW" | "SI" | "VO" | "LS" | "Misc") | No | Optional disaster event type code to filter results |
| `countryCode` | string | Yes | 3-letter ISO country code (e.g., USA for United States, GBR for United Kingdom, IND for India) |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get latest natural disasters by coordinates

**Slug:** `AMBEE_GET_DISASTERS_LATEST_BY_LAT_LNG`

Tool to retrieve latest natural disaster data (earthquakes, floods, droughts, volcanic eruptions) for a specific location using geographic coordinates. Use when you need up-to-date disaster information for a particular latitude and longitude.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `lat` | number | Yes | Latitude of the search location. Must be between -90 and 90 degrees. |
| `lng` | number | Yes | Longitude of the search location. Must be between -180 and 180 degrees. |
| `page` | integer | No | Page number for pagination |
| `limit` | integer | No | Number of results per page to return |
| `eventType` | string ("TN" | "EQ" | "TC" | "WF" | "FL" | "ET" | "DR" | "SW" | "SI" | "VO" | "LS" | "Misc") | No | Optional disaster event type code to filter results |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Elevation by Latitude and Longitude

**Slug:** `AMBEE_GET_ELEVATION_BY_LAT_LNG`

Tool to retrieve elevation statistics (min, max, mean) for a specific latitude and longitude. Use when you need geospatial elevation data for a location within North America.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `lat` | number | Yes | Latitude of the search location. Must be between -90 and 90 degrees. |
| `lng` | number | Yes | Longitude of the search location. Must be between -180 and 180 degrees. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Elevation by Place

**Slug:** `AMBEE_GET_ELEVATION_BY_PLACE`

Retrieve elevation statistics (minimum, maximum, and mean) for a location by place name. Returns elevation data in meters above sea level. This endpoint has global coverage and is updated every 6 months. Use this when you have a place name (like "San Francisco, USA" or "Tokyo") and need detailed elevation information.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `place` | string | Yes | Name of the location to search. Can be a city name (e.g., 'Tokyo'), city with country (e.g., 'Paris, France'), or a more specific location (e.g., 'San Francisco, USA'). Global coverage available. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Fire Risk by Latitude and Longitude

**Slug:** `AMBEE_GET_FIRE_RISK_BY_LAT_LNG`

Tool to retrieve fire risk forecast and Fire Weather Index (FWI) data for specific geographic coordinates. Use when you need weekly fire risk predictions for a location over the next four weeks based on latitude and longitude.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `lat` | number | Yes | Latitude of the search location, must be between -90 and 90 degrees |
| `lng` | number | Yes | Longitude of the search location, must be between -180 and 180 degrees |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get ILI Forecast by Latitude and Longitude

**Slug:** `AMBEE_GET_ILI_FORECAST_BY_LAT_LNG`

Tool to retrieve up to 28-day forecast of Influenza-like Illness (ILI) risk using latitude and longitude. Use when you need daily ILI risk levels for a specific location, optionally including pollen and weather details.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `lat` | number | Yes | Latitude of the search location, must be between -90 and 90 degrees |
| `lng` | number | Yes | Longitude of the search location, must be between -180 and 180 degrees |
| `details` | boolean | No | If true, includes pollen (tree/grass/weed counts and risk levels) and weather (temperature, humidity, windSpeed) data alongside the ILI risk. Default is False. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Pollen Forecast by Place

**Slug:** `AMBEE_GET_POLLEN_FORECAST_BY_PLACE`

Tool to retrieve 48-hour pollen forecast for a specific location by place name. Use when you need hourly pollen count predictions including grass, tree, and weed pollen levels with risk assessments.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `place` | string | Yes | Name of the location to search for pollen forecast data |
| `speciesRisk` | boolean | No | Include species-level risk information in the response. When true, provides detailed pollen counts for individual tree, grass, and weed species |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Pollen History by Place

**Slug:** `AMBEE_GET_POLLEN_HISTORY_BY_PLACE`

Tool to retrieve historical pollen data for a specific place name. Use after obtaining a valid place name and time range when historical pollen counts and risk levels are needed.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `to` | string | Yes | The ending timestamp of the period to search for in the format YYYY-MM-DD hh:mm:ss. |
| `from` | string | Yes | The starting timestamp of the period to search for in the format YYYY-MM-DD hh:mm:ss. |
| `place` | string | Yes | The name of the place to search. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Latest Pollen Data by Latitude and Longitude

**Slug:** `AMBEE_GET_POLLEN_LATEST_BY_LAT_LNG`

Tool to retrieve latest pollen data for a specific geographic location using latitude and longitude coordinates. Use when you need current pollen concentration levels and risk assessments for grass, tree, and weed pollen at a location.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `lat` | number | Yes | Latitude of the search location. Must be between -90 and 90 degrees. |
| `lng` | number | Yes | Longitude of the search location. Must be between -180 and 180 degrees. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Latest Pollen by Place

**Slug:** `AMBEE_GET_POLLEN_LATEST_BY_PLACE`

Tool to retrieve latest pollen data for a specific place by name. Use when current pollen count and risk levels are needed for allergy awareness.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `place` | string | Yes | The name of the place to search for pollen data. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Weather Forecast by Latitude and Longitude

**Slug:** `AMBEE_GET_WEATHER_FORECAST_BY_LAT_LNG`

Tool to retrieve weather forecast for a specific latitude and longitude (up to 72 hours). Use when you need predicted weather data based on geographic coordinates with customizable time intervals.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `lat` | number | Yes | Latitude of the search location, must be between -90 and 90 degrees |
| `lng` | number | Yes | Longitude of the search location, must be between -180 and 180 degrees |
| `filter` | string ("minutely" | "hourly" | "daily") | No | Averaging interval for forecast data. Can be 'minutely', 'hourly', or 'daily'. If not specified, defaults to the API's default interval. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Current Weather by Latitude and Longitude

**Slug:** `AMBEE_GET_WEATHER_LATEST_BY_LAT_LNG`

Tool to retrieve current weather data for a specific latitude and longitude, including temperature, pressure, humidity, and wind conditions. Use when you need real-time weather information for given coordinates.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `lat` | number | Yes | Latitude of the search location. Must be between -90 and 90 degrees. |
| `lng` | number | Yes | Longitude of the search location. Must be between -180 and 180 degrees. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Wildfire Data by Latitude and Longitude

**Slug:** `AMBEE_GET_WILDFIRE_BY_LAT_LNG`

Retrieves real-time wildfire data for a specific geographic location using latitude and longitude coordinates. Returns nearby wildfire incidents including both detected fires (from satellite imagery) and reported fires (from official sources). Each record includes location, detection time, fire category, Fire Radiative Power (FRP), Fire Weather Index (FWI), and confidence level when available. Use this tool when you need to: - Monitor wildfire activity in a specific area - Get real-time fire detection data for coordinates - Check for fire hazards at a particular location - Filter fires by type (detected vs reported) The API returns fires within a radius of the specified coordinates.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `lat` | number | Yes | Latitude of the search location, must be between -90 and 90 degrees |
| `lng` | number | Yes | Longitude of the search location, must be between -180 and 180 degrees |
| `type` | string ("reported" | "detected") | No | Optional filter to specify fire type. 'detected' returns satellite-detected fires, 'reported' returns officially reported fires from authorities. If not specified, returns both types. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Wildfire Data by Place

**Slug:** `AMBEE_GET_WILDFIRE_BY_PLACE`

Retrieves real-time wildfire data for a specific location by place name. Returns wildfire incidents from the last 7 days including both satellite-detected fires and officially reported fires. Each record includes precise location coordinates, detection time, fire intensity metrics (FRP, FWI), fire category, and confidence level. Use this tool when you need to: - Check for active wildfires in a city, state, or country - Monitor fire activity in a specific geographic area - Get recent wildfire detection data without knowing exact coordinates - Filter fires by type (satellite-detected vs officially reported) The API searches within a geographic area around the place name provided. More specific locations (e.g., "San Francisco, CA") return more localized results than broad queries (e.g., "California").

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `type` | string ("reported" | "detected") | No | Optional filter for fire type. 'detected' returns satellite-detected fires, 'reported' returns officially reported fires from authorities. Omit to get both types. |
| `place` | string | Yes | Name of the location to search for wildfires. Can be a city, state, or country (e.g., 'San Francisco, CA', 'California', 'Greece'). More specific locations return more localized results. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Wildfire Risk Forecast by Place

**Slug:** `AMBEE_GET_WILDFIRE_RISK_FORECAST_BY_PLACE`

Tool to retrieve wildfire risk forecast for a specific place. Use when you need weekly wildfire risk predictions for a location over the next four weeks.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `place` | string | Yes | Name of the location to be searched, e.g., 'Leon, Mexico' |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Reverse Geocode by Latitude and Longitude

**Slug:** `AMBEE_REVERSE_GEOCODE_BY_LAT_LNG`

Tool to convert geographic coordinates into human-readable location data (address, place name, postal code). Use when you have latitude and longitude and need to get the corresponding address or location details.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `lat` | number | Yes | Latitude of the location to reverse geocode. Must be between -90 and 90 degrees. |
| `lng` | number | Yes | Longitude of the location to reverse geocode. Must be between -180 and 180 degrees. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |
