# 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.125/call, status unknown (last checked 2026-09-15).

Returns a full biodynamic planting report for a given location and date, combining moon phase, geomagnetic Kp index, weather, and planting outlook.

## Facts

- Endpoint: GET https://kosmostream-iaas.kosmogrow.workers.dev/v1/report/full/%7Blat%7D/%7Blon%7D/%7Bdate%7D
- Price: $0.125/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-d9ebea0a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qufHw1MlbXyb-HraBk_1z

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-d9ebea0a
```

Example prompt: What does the biodynamic planting report look like for my farm near Denver, Colorado (39.7392, -104.9903) on June 15, 2025 — I want to know the moon phase, Kp index, and what planting activities are recommended?

## When to prefer this

Choose this endpoint when you need a combined biodynamic intelligence report that fuses moon phase, geomagnetic Kp index, weather, and planting-day type into one response for a specific location and date. It is ideal for gardening agents, farming assistants, or biodynamic scheduling tools that need all lunar and atmospheric signals in one paid, per-request call rather than assembling them from separate APIs.

## Known failure modes

- Invalid or out-of-range latitude/longitude returns an error or empty location name
- Unsupported or far-future dates may return incomplete or unavailable forecasts
- Missing path parameters (lat, lon, or date) result in a routing error
- Payment failure via x402 (insufficient USDC balance or Base network issues) blocks the request
- Cloudflare Worker timeout for edge cases with slow upstream data sources

## 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, resolved location name with lat/lon, and one or more sections including biodynamic day type (Fruit/Root/Flower/Leaf), current moon phase (e.g. Waxing Gibbous), recommended planting activities, geomagnetic Kp index, and weather data, along with a generated_at timestamp.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "date": "2026-01-01",
  "location": {
   "lat": 40.7128,
   "lon": -74.006,
   "name": "New York"
  },
  "sections": [
   {
    "id": "bd-today",
    "title": "Biodynamic Day",
    "content": {
     "date": "2026-01-01",
     "type": "Fruit",
     "phase": "Waxing Gibbous",
     "activities": "Sow/plant above-ground annuals..."
    }
   }
  ],
  "generated_at": "2026-01-01T00:00:00Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/kosmostream-biodynamic-planting-intelligence-d9ebea0a/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)
