# NASA FIRMS Wildfire & Thermal Anomaly Detection API

> NASA FIRMS Wildfire & Thermal Anomaly Detection API is a paid API for AI agents from coinrailz.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns real-time wildfire and thermal anomaly alerts sourced from NASA FIRMS satellite data

## Facts

- Endpoint: GET https://coinrailz.com/api/satellite/fire-alerts
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/nasa-firms-wildfire-thermal-anomaly-detection-api-deb2e40f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dvYDCIkQcXAyPueUOm8bR

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability nasa-firms-wildfire-thermal-anomaly-detection-api-deb2e40f
```

Example prompt: Can you pull the latest NASA satellite fire alerts right now for my agent ID 'agent-007' so I can see if there are any active wildfires or thermal anomalies being detected?

## When to prefer this

Choose this endpoint when you need real-time satellite-based wildfire or thermal anomaly detection data sourced from NASA FIRMS, particularly in automated agent workflows that require up-to-the-minute fire monitoring without manually querying NASA directly. Best for agents that need programmatic, pay-per-call access to fire alert data.

## Known failure modes

- Missing agentId returns 400 validation error
- Invalid agentId format may return authentication failure
- Service unavailable returns 503 with no fire data
- NASA FIRMS upstream outage may result in stale or empty data
- Payment of $0.05 USDC not fulfilled returns 402 Payment Required

## How this service works

Real-time wildfire and thermal anomaly detection from NASA FIRMS

## Output

Returns a JSON object confirming successful execution of the fire-alerts service, including a timestamp and result summary indicating whether active wildfires or thermal anomalies were detected via NASA FIRMS satellite data.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "west",
  "south",
  "east",
  "north"
 ],
 "properties": {
  "days": {
   "type": "number",
   "description": "Days to look back (default: 1)"
  },
  "east": {
   "type": "number",
   "description": "Eastern longitude boundary (-180 to 180)"
  },
  "west": {
   "type": "number",
   "description": "Western longitude boundary (-180 to 180)"
  },
  "north": {
   "type": "number",
   "description": "Northern latitude boundary (-90 to 90)"
  },
  "south": {
   "type": "number",
   "description": "Southern latitude boundary (-90 to 90)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "application/json",
 "format": "json",
 "example": {
  "result": "Service executed successfully",
  "service": "fire-alerts",
  "success": true,
  "timestamp": "2026-02-07T02:54:13.204Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/nasa-firms-wildfire-thermal-anomaly-detection-api-deb2e40f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from coinrailz.com](https://www.zero.xyz/host/coinrailz.com/llms.txt)
