# Brazilayer Commodity Signals – Brazil Fire Hotspots

> Brazilayer Commodity Signals – Brazil Fire Hotspots is a paid API for AI agents from api.brazilayer.com, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Returns daily INPE satellite fire hotspot counts and mean fire radiative power (FRP) by Brazilian biome over the last 7 days, plus leading states and a drought proxy (mean days-without-rain at fire locations).

## Facts

- Endpoint: GET https://api.brazilayer.com/v1/commodities/fogo
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/brazilayer-commodity-signals-brazil-fire-hotspots-388de54a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zPG3oQ6GdOLP_Saxpz42m

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 brazilayer-commodity-signals-brazil-fire-hotspots-388de54a
```

Example prompt: Pull the latest INPE fire hotspot data for Brazil — I need the 7-day counts and mean fire intensity broken down by biome like Amazon and Cerrado, the leading states, and the drought proxy for ESG screening on our soy supply chain.

## When to prefer this

Choose this endpoint when you need a ready-made, aggregated fire and drought risk signal for Brazilian commodities — specifically ESG screening, carbon market assessments, or soy/cattle supply chain risk — without having to ingest and process raw INPE satellite feeds yourself. It is preferable over raw satellite data APIs when you need biome-level aggregation, FRP intensity, state rankings, and a drought proxy in a single low-cost call.

## Known failure modes

- INPE data feed unavailability may result in stale or incomplete biome data
- No query parameters means all fields are fixed — no filtering by biome or date range is available
- Rate limiting or payment validation failure may return 402 Payment Required
- If fire activity is very low, some biomes may return zero counts which could be misread as missing data

## How this service works

Daily fire hotspots across Brazil from the official INPE satellite program: count and mean intensity (FRP) by biome (Amazon, Cerrado, etc.) over the last 7 days, leading states, plus mean days-without-rain at fire locations — a drought proxy. Signal for ESG screening, carbon markets, cattle and soy supply-chain risk. Free sample, no payment: https://api.brazilayer.com/v1/commodities/amostra

## Output

A structured JSON response containing: total fire hotspot counts by Brazilian biome (Amazon, Cerrado, etc.) over the last 7 days, mean fire radiative power (FRP) as a fire intensity measure, the leading Brazilian states by hotspot count, and mean days-without-rain at fire locations as a drought proxy — all sourced from INPE satellite data.

## 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",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/brazilayer-commodity-signals-brazil-fire-hotspots-388de54a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.brazilayer.com](https://www.zero.xyz/host/api.brazilayer.com/llms.txt)
