# Brazilayer Commodity Signals Bundle

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

Returns all five Brazil commodity signal datasets in a single bundled call: crop-weather stress, fire hotspots, monthly exports, hydro reservoir energy, and a daily English briefing.

## Facts

- Endpoint: GET https://api.brazilayer.com/v1/commodities/pacote
- Price: $0.06/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-bundle-fcdd015f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LAn8IpwmAwiUxulNHVHnp

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-bundle-fcdd015f
```

Example prompt: Pull the full Brazil commodity signals bundle for me — I want the crop-weather stress across all belts, fire hotspots by biome, monthly export figures, hydro reservoir energy levels, and the daily English briefing, all in one shot.

## When to prefer this

Choose this bundle endpoint when you need two or more of the five Brazil commodity signals in a single workflow — it is 47% cheaper per signal than calling each endpoint individually. Prefer it for dashboards, monitoring agents, or any use case requiring a comprehensive Brazil agricultural market snapshot. Use the individual signal endpoints only when you need exactly one signal type to minimize latency or payload size.

## Known failure modes

- 503 returned with no charge if fewer than half of the five underlying signals are available
- Individual signal components listed in `indisponiveis` if unavailable but majority responded
- Stale data if upstream official sources (ONS, MAPA, INPE) have not published latest figures
- Authentication or payment failure if x402 payment header is missing or insufficient

## How this service works

All five Brazil commodity signals in ONE call, 47% cheaper than one by one: crop-weather stress per belt (coffee, soy, sugar, corn, orange, cocoa), fire hotspots by biome, monthly exports, reservoir energy and the daily English briefing. Same JSON as the single endpoints, keyed by name; unavailable components are listed in `indisponiveis` (503 and no charge if fewer than half respond). Free sample, no payment: https://api.brazilayer.com/v1/commodities/amostra

## Output

A JSON object keyed by signal name containing: (1) crop-weather stress indices per agricultural belt for coffee, soy, sugar, corn, orange, and cocoa; (2) fire hotspot counts by Brazilian biome; (3) monthly commodity export volumes; (4) hydro reservoir energy (EAR) by grid subsystem; and (5) a daily English-language commodity briefing. Any unavailable components are listed under an `indisponiveis` key. If fewer than half of the underlying signals respond, returns a 503 with no charge.

## 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-bundle-fcdd015f/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)
