# AgentToll Wildfire Data

> AgentToll Wildfire Data is a paid API for AI agents from agenttoll.dev, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Retrieves current wildfire data filtered by region and result count, sourced from federal environmental datasets

## Facts

- Endpoint: POST https://agenttoll.dev/paid/env/wildfires
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agenttoll-wildfire-data-9097fbf4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0yAhwizFjYTdGkz8bmBlg

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 agenttoll-wildfire-data-9097fbf4 -d '<json body>'
```

Example prompt: Can you pull the latest wildfire data for the Western US and give me the top 10 incidents?

## When to prefer this

Choose this endpoint when you need structured wildfire incident data queryable by geographic region with pay-per-call pricing and no subscription required. Prefer over general web searches when you need machine-readable, sourced wildfire records from federal datasets for programmatic use in dashboards, alerts, or environmental analysis.

## Known failure modes

- Invalid region string returns empty data or error
- Limit value out of acceptable range may return default or error
- Upstream federal data source unavailable causes failure response
- Network timeout if federal data source is slow
- success: false with no data if the query yields no results for the region

## How this service works

108+ receipt-backed x402 work products for AI agents. Clear prices, spend caps, buyer metadata, and structured results over Base USDC.

## Output

Returns a JSON object with a data array or object containing wildfire records, a meta object with count, source name, and generation timestamp, plus boolean flags for success and whether the result was cached.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "integer"
  },
  "region": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "oneOf": [
    {
     "type": "array"
    },
    {
     "type": "object"
    }
   ]
  },
  "meta": {
   "type": "object",
   "properties": {
    "count": {
     "type": "integer"
    },
    "source": {
     "type": "string"
    },
    "generated_at": {
     "type": "string",
     "format": "date-time"
    }
   }
  },
  "cached": {
   "type": "boolean"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agenttoll-wildfire-data-9097fbf4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agenttoll.dev](https://www.zero.xyz/host/agenttoll.dev/llms.txt)
