The Ambee wildfire API provides critical data on location, intensity, size, and potential risks related to wildfires.
Retrieve real-time, up-to-the-minute wildfire data for locations globally.
Get wildfire data using geographic coordinates (latitude/longitude).
x-api-key
Content-type
Accept-Language
lat
lng
type
https://api.ambeedata.com/fire/latest/by-lat-lng?lat=36.2734752809624&lng=-106.7050318
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();
Retrieve wildfire data using the desired place name and time period.
x-api-key
Content-type
Accept-Language
place
type
https://api.ambeedata.com/fire/latest/by-place?place=Virgin, UT
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();
Next
Playground
Yes
No