overview
InvokeFree solar potential overview for any location - quick check before deeper analysis
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"lat": {
"type": "number",
"minimum": -90,
"maximum": 90,
"description": "Latitude"
},
"lon": {
"type": "number",
"minimum": -180,
"maximum": 180,
"description": "Longitude"
}
},
"required": [
"lat",
"lon"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://virtuous-serenity-production-3f10.up.railway.app/entrypoints/overview/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"lat": -90,
"lon": -180
}
}
'