# ClearCheck Wildfire Activity Lookup

> ClearCheck Wildfire Activity Lookup is a paid API for AI agents from loonie-toll.onrender.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns active wildfire incidents for a US state, including acres burned, percent contained, personnel deployed, and a NONE/ACTIVE/MAJOR severity verdict.

## Facts

- Endpoint: GET https://loonie-toll.onrender.com/wildfire
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/clearcheck-wildfire-activity-lookup-903ef431
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-6auzZWKL3AZ5ZTQ-0e4p

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 clearcheck-wildfire-activity-lookup-903ef431
```

Example prompt: Are there any active wildfires in California right now? Give me up to 15 incidents with acres burned, percent contained, and an overall severity verdict.

## When to prefer this

Choose this endpoint when you need a structured, pre-interpreted wildfire status check for a specific US state with a clear severity verdict (NONE/ACTIVE/MAJOR) rather than raw fire-perimeter GIS data. It is ideal for agent workflows that need a fast, human-readable fire danger assessment without parsing complex geospatial datasets. Prefer it over general web search when you need machine-readable structured output with consistent fields like percent contained and personnel.

## Known failure modes

- Invalid or missing state code returns an error
- State with no active incidents returns an empty incidents array with NONE verdict
- Upstream wildfire data source unavailable causes fetch failure
- Limit parameter ignored or defaulted if out of expected range
- Response may be stale if upstream incident data feed is delayed

## How this service works

Active wildfires for a US state: incidents, acres, percent contained, personnel, with a NONE / ACTIVE / MAJOR verdict.

## Output

Returns a JSON object containing a list of wildfire incidents for the requested state (each with name, county, acres burned, percent contained, personnel count, fire behavior, and discovery timestamp), plus a top-level verdict of NONE, ACTIVE, or MAJOR, a count of incidents and major fires, the data source, retrieval timestamp, supporting reasons for the verdict, and a disclaimer.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "state"
     ],
     "properties": {
      "limit": {
       "type": "integer",
       "description": "Max incidents to return, default 10"
      },
      "state": {
       "type": "string",
       "description": "2-letter state code, e.g. CA"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "query": {
       "type": "object",
       "properties": {
        "state": {
         "type": "string"
        }
       }
      },
      "source": {
       "type": "string"
      },
      "reasons": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "verdict": {
       "type": "string"
      },
      "incidents": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "name": {
          "type": "string"
         },
         "acres": {
          "type": "integer"
         },
         "county": {
          "type": "string"
         },
         "behavior": {
          "type": [
           "null",
           "string"
          ]
         },
         "personnel": {
          "type": [
           "integer",
           "null"
          ]
         },
         "discoveredAt": {
          "type": "string"
         },
         "percentContained": {
          "type": [
           "integer",
           "null"
          ]
         }
        }
       }
      },
      "disclaimer": {
       "type": "string"
      },
      "majorCount": {
       "type": "integer"
      },
      "retrievedAt": {
       "type": "string"
      },
      "incidentCount": {
       "type": "integer"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/clearcheck-wildfire-activity-lookup-903ef431/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from loonie-toll.onrender.com](https://www.zero.xyz/host/loonie-toll.onrender.com/llms.txt)
