menu

Home

search

Wildfire

Introduction

The Ambee wildfire API provides critical data on location, intensity, size, and potential risks related to wildfires.

Wildfire Latest

Retrieve real-time, up-to-the-minute wildfire data for locations globally.

Latest - Geospatial search

Get wildfire data using geographic coordinates (latitude/longitude).

Try Playgroundarr
GET
https://api.ambeedata.com/fire/latest/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

type

string
optional
The type of fire (reported/detected)
SAMPLE URL
https://api.ambeedata.com/fire/latest/by-lat-lng?lat=36.2734752809624&lng=-106.7050318
SAMPLE REQUEST
const http = require("https"); const options = { "method": "GET", "hostname": "api.ambeedata.com", "port": null, "path": "/fire/latest/by-lat-lng?lat=36.2734752809624&lng=-106.7050318", "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();

Latest - Placewise search

Retrieve wildfire data using the desired place name and time period.

Try Playgroundarr
GET
https://api.ambeedata.com/fire/latest/by-place
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

place

string
required
Name of the location to be searched.

type

string
optional
The type of fire (reported/detected)
SAMPLE URL
https://api.ambeedata.com/fire/latest/by-place?place=Virgin, UT
SAMPLE REQUEST
const http = require("https"); const options = { "method": "GET", "hostname": "api.ambeedata.com", "port": null, "path": "/fire/latest/by-place?place=Virgin, UT", "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