# KosmoStream Biodynamic Planting Intelligence

> KosmoStream Biodynamic Planting Intelligence is a paid API for AI agents from kosmostream-iaas.kosmogrow.workers.dev, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-15).

Returns location- and date-specific biodynamic planting intelligence including weather, geomagnetic Kp index, moon phase, and planting outlook for a given GPS coordinate and date.

## Facts

- Endpoint: GET https://kosmostream-iaas.kosmogrow.workers.dev/v1/report/%7Blat%7D/%7Blon%7D/%7Bdate%7D
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/kosmostream-biodynamic-planting-intelligence-0a174af1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wOHkFIH2ILUbv8dc-XX_f

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 kosmostream-biodynamic-planting-intelligence-0a174af1
```

Example prompt: What are the biodynamic planting conditions for my farm at latitude 40.7128, longitude -74.006 on January 1st, 2026? I want to know the moon phase, weather, Kp index, and whether it's a good planting day.

## When to prefer this

Choose this endpoint when you need a unified, per-location biodynamic agricultural intelligence report combining weather, moon phase, and geomagnetic data for a specific date. It is ideal for farming and gardening agents that need to make planting decisions grounded in biodynamic principles rather than just standard weather forecasts. Prefer this over generic weather APIs when the user explicitly cares about biodynamic calendar factors, lunar cycles, or Kp geomagnetic activity in their planting workflow.

## Known failure modes

- Invalid or out-of-range latitude/longitude returns an error response
- Unsupported or malformed date format causes a parsing failure
- Payment not received via x402 protocol results in 402 Payment Required
- Date too far in the future may return incomplete forecast data
- Network timeout from upstream weather or geomagnetic data providers

## How this service works

Location + date based biodynamic planting intelligence — weather, geomagnetic Kp, moon phase, and planting outlook. Paid per request in USDC on Base via x402.

## Output

A JSON report containing the date, location details (lat, lon, name), a list of alerts with severity levels (e.g. rain warnings), a sections array with biodynamic day classification and content, and a generated_at timestamp. The report synthesizes weather probability, lunar phase, and geomagnetic Kp index into a unified planting outlook.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "date": "2026-01-01",
  "alerts": [
   {
    "text": "High rain chance today (65% POP).",
    "level": "warning"
   }
  ],
  "location": {
   "lat": 40.7128,
   "lon": -74.006,
   "name": "New York"
  },
  "sections": [
   {
    "id": "bd-today",
    "title": "Biodynamic Day",
    "content": {}
   }
  ],
  "generated_at": "2026-01-01T00:00:00Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/kosmostream-biodynamic-planting-intelligence-0a174af1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from kosmostream-iaas.kosmogrow.workers.dev](https://www.zero.xyz/host/kosmostream-iaas.kosmogrow.workers.dev/llms.txt)
