Solematica
Compare Italian rooftop-solar installer offers in one call
Solematica benchmarks photovoltaic packages from major Italian energy operators—price per kW, panels, inverters, batteries and warranties. The public /providers endpoint returns the full comparison as JSON with no key, provided you credit Solematica. Deeper data like energy prices and satellite roof analysis needs paid credits.
GET https://api.solematica.it/api/v1/providers
{
"providers": [
{
"slug": "iren",
"nome": "Iren",
"prezzo_3kw": "da 4.990 €",
"pannelli": "Trinasolar / AIKO (fonti terze)",
"inverter": "ZCS Azzurro (Zucchetti)",
"garanzia": "25 anni pannelli",
"sede": "Reggio Emilia"
}
]
}curl "https://api.solematica.it/api/v1/providers"const res = await fetch("https://api.solematica.it/api/v1/providers");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://api.solematica.it/api/v1/providers")
print(res.json())BROWSER CALLS BLOCKED (NO CORS/HTTPS) — USE THE CURL SNIPPET
/providersPROBEDCompare Italian rooftop-solar installer offers in one call
/providers?limit=5Paginated variant with limit parameter.
/api/v1/stima/solar-info?lat=45.464&Geospatial query by coordinates.
/api/v1/tracking/ABC123XYZ456ABC123XYZ456 — documented GET route.
/api/v1/blog?categoria=incentivi&Blog — documented GET route.
/api/v1/providersStreaming or service providers.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
Solematica: common questions
Is Solematica free to use?
Yes — Solematica is a free weather API. Free tier: Free public /providers endpoint; other endpoints need paid credits. Whether the free tier allows commercial use is unclear — check the provider docs.
Does Solematica need an API key?
No — Solematica needs no API key or signup. You can call it straight away; rate limits still apply (100 req/window · 99 remaining · resets 900).
Can I call Solematica from the browser?
Not directly — Solematica doesn't send browser-friendly CORS headers, so call it from a server or proxy instead. Copy the curl or Python snippet on this page to get started.
Is Solematica up right now?
As of our last scheduled check, Solematica is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.