# StatePulse Wildfire Live Telemetry

> StatePulse Wildfire Live Telemetry is a paid API for AI agents from statepulse-api.hahavoid0.workers.dev, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns live wildfire telemetry including active fire names, locations, containment percentages, and last-updated timestamps

## Facts

- Endpoint: POST https://statepulse-api.hahavoid0.workers.dev/environment/wildfire
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/statepulse-wildfire-live-telemetry-94b6c95a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1BRPaWud-wFuPUzZ4jdnI

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 statepulse-wildfire-live-telemetry-94b6c95a -d '<json body>'
```

Example prompt: Are there any active wildfires burning right now, and what's the current containment percentage for each one?

## When to prefer this

Use this endpoint when an AI agent needs real-time wildfire situational awareness — active fires, containment status, and location — without requiring an API key and with pay-per-call USDC micropayments. Prefer over static databases or news scraping when live telemetry and structured JSON output with confidence scoring are needed.

## Known failure modes

- No active wildfires found — empty wildfires array returned
- Data confidence flagged as low when underlying sources are stale or sparse
- supported: false returned if the region or query type is not covered
- Network timeout or Cloudflare Workers cold-start latency causing delayed response
- Payment failure via x402 if USDC balance on Base is insufficient

## How this service works

Scans active wildfire reports and incidents via public NASA FIRMS satellite active fire alert feeds to locate active blazes. Matches: active wildfire detector, NASA FIRMS fire coordinates, forest fire satellite alert, wildfire tracking map, satellite burn zones detector.

## Output

A JSON object containing a list of active wildfires, each with a name, geographic location, containment percentage, and last-updated UTC timestamp. Also includes a 'supported' boolean and a confidence level (e.g. 'medium') indicating data reliability.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "properties": {
      "state": {
       "type": "string",
       "examples": [
        "CA"
       ],
       "description": "Two-letter US state code"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": {
   "wildfires": [
    {
     "name": "Bridge Fire",
     "updated": "2026-06-24T22:10:00Z",
     "location": "Angeles National Forest",
     "percent_contained": 15
    }
   ]
  },
  "supported": true,
  "confidence": "medium"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/statepulse-wildfire-live-telemetry-94b6c95a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from statepulse-api.hahavoid0.workers.dev](https://www.zero.xyz/host/statepulse-api.hahavoid0.workers.dev/llms.txt)
