# Coin Railz Satellite Vegetation Health Monitor

> Coin Railz Satellite Vegetation Health Monitor is a paid API for AI agents from coinrailz.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Monitors crop and forest health using Sentinel-2 and MODIS satellite imagery data

## Facts

- Endpoint: GET https://coinrailz.com/api/satellite/vegetation
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/coin-railz-satellite-vegetation-health-monitor-bd900ee9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Czi4XpcQ-4mtSWSoG8ezj

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 coin-railz-satellite-vegetation-health-monitor-bd900ee9
```

Example prompt: Can you pull the latest crop and forest vegetation health report from the satellite monitoring service using my agent ID 'agent-007'?

## When to prefer this

Choose this endpoint when you need automated, satellite-based vegetation and crop health assessments for agricultural or forestry applications, especially when integrating with AI agent workflows that use x402 micropayment infrastructure. Prefer over manual GIS tools when you need programmatic access within an autonomous agent pipeline.

## Known failure modes

- Missing or invalid agentId returns an error response
- Service temporarily unavailable if satellite data feeds are offline
- x402 payment of $0.1 USDC must succeed before data is returned
- Invalid network identifier in the networks array may cause filtering errors
- Empty or malformed request body returns a 400-level error

## How this service works

Crop and forest health monitoring via Sentinel-2 and MODIS

## Output

Returns a JSON object confirming the vegetation health monitoring service ran successfully, with a result message, service name, success boolean, and ISO timestamp of the analysis.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "west",
  "south",
  "east",
  "north"
 ],
 "properties": {
  "east": {
   "type": "number",
   "description": "Eastern longitude boundary (-180 to 180)"
  },
  "west": {
   "type": "number",
   "description": "Western longitude boundary (-180 to 180)"
  },
  "north": {
   "type": "number",
   "description": "Northern latitude boundary (-90 to 90)"
  },
  "south": {
   "type": "number",
   "description": "Southern latitude boundary (-90 to 90)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "application/json",
 "format": "json",
 "example": {
  "result": "Service executed successfully",
  "service": "vegetation",
  "success": true,
  "timestamp": "2026-02-07T01:55:15.539Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/coin-railz-satellite-vegetation-health-monitor-bd900ee9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from coinrailz.com](https://www.zero.xyz/host/coinrailz.com/llms.txt)
