Uses the nearest current DWD MOSMIX_L station forecast, or a station explicitly supplied b
Uses the nearest current DWD MOSMIX_L station forecast, or a station explicitly supplied by the caller. Global irradiance drives a transparent PV estimate and forecast wind speed drives a stated generic turbine curve; neither replaces a site-specific yield model. A constant hourly load and optional battery are simulated over 12 to 120 hours. The result is an installation-risk signal, not an official weather warning, emergency alert or guarantee of supply.
5000 (raw units)
price
1
calls / 30d
1
unique payers
2026-08-30
updated
Provider
solar.halowerk.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x2880EdfFF13100677Bf97A3CBdF3Bc34771C4E5E",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "5000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"alert": {
"minimum_duration_hours": 6,
"renewable_coverage_percent": 50
},
"battery": {
"capacity_wh": 9600,
"reserve_soc_percent": 20,
"soc_percent": 72
},
"forecast_hours": 72,
"lat": 52.52,
"load_wh_per_day": 4200,
"lon": 13.405,
"solar": {
"capacity_wp": 2400,
"performance_ratio": 0.78
},
"wind": {
"capacity_w": 800,
"cut_in_m_s": 3,
"cut_out_m_s": 25,
"rated_m_s": 12
}
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"alert": {
"additionalProperties": false,
"properties": {
"minimum_duration_hours": {
"default": 6,
"maximum": 48,
"minimum": 3,
"type": "integer"
},
"renewable_coverage_percent": {
"default": 50,
"maximum": 100,
"minimum": 0,
"type": "number"
}
},
"type": "object"
},
"battery": {
"additionalProperties": false,
"properties": {
"capacity_wh": {
"maximum": 100000000,
"minimum": 10,
"type": "number"
},
"charge_efficiency": {
"default": 0.95,
"maximum": 1,
"minimum": 0.5,
"type": "number"
},
"discharge_efficiency": {
"default": 0.95,
"maximum": 1,
"minimum": 0.5,
"type": "number"
},
"reserve_soc_percent": {
"default": 20,
"maximum": 90,
"minimum": 0,
"type": "number"
},
"soc_percent": {
"maximum": 100,
"minimum": 0,
"type": "number"
}
},
"required": [
"capacity_wh",
"soc_percent"
],
"type": "object"
},
"forecast_hours": {
"default": 72,
"maximum": 120,
"minimum": 12,
"type": "integer"
},
"include_series": {
"default": true,
"type": "boolean"
},
"lat": {
"maximum": 90,
"minimum": -90,
"type": "number"
},
"load_wh_per_day": {
"maximum": 10000000,
"minimum": 1,
"type": "number"
},
"lon": {
"maximum": 180,
"minimum": -180,
"type": "number"
},
"max_station_distance_km": {
"default": 80,
"maximum": 300,
"minimum": 1,
"type": "number"
},
"solar": {
"additionalProperties": false,
"properties": {
"capacity_wp": {
"maximum": 10000000,
"minimum": 0,
"type": "number"
},
"performance_ratio": {
"default": 0.78,
"maximum": 1,
"minimum": 0.1,
"type": "number"
}
},
"type": "object"
},
"station_id": {
"description": "Optional DWD MOSMIX station id. Use this or coordinates.",
"pattern": "^[A-Za-z0-9]{4,5}$",
"type": "string"
},
"wind": {
"additionalProperties": false,
"properties": {
"capacity_w": {
"maximum": 10000000,
"minimum": 0,
"type": "number"
},
"cut_in_m_s": {
"default": 3,
"maximum": 10,
"minimum": 0.5,
"type": "number"
},
"cut_out_m_s": {
"default": 25,
"maximum": 60,
"minimum": 5,
"type": "number"
},
"rated_m_s": {
"default": 12,
"maximum": 30,
"minimum": 2,
"type": "number"
}
},
"type": "object"
}
},
"required": [
"load_wh_per_day"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://solar.halowerk.com/off-grid-weather-alarm" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://solar.halowerk.com/off-grid-weather-alarm");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://solar.halowerk.com/off-grid-weather-alarm")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/15430.json, and this resource appears in /discovery/resources and /discovery/search.