Provenance
Freshness & coverage
Methods (5)
getRegions
readCAMMESA power grid regions (24 provinces + 8 regions + SADI total) with their ids.
Input schema
{ "type": "object", "properties": {}, "additionalProperties": false }The id field is the regionId for the demand/generation calls.
getRegionDemand
readReal-time 5-min demand (MW) + temperature (°C) for a region, by region id.
Input schema
{ "type": "object", "properties": { "regionId": { "type": "integer", "examples": [ 425 ], "oneOf": [ { "type": "string" }, { "type": "number" } ] } }, "additionalProperties": false, "required": [ "regionId" ] }regionId must be a valid id from getRegions. Returns current + full series.
getSystemDemand
readReal-time system-wide demand (MW) + temperature for the whole SADI grid.
Input schema
{ "type": "object", "properties": {}, "additionalProperties": false }Convenience wrapper for the Total del SADI region (id 1002).
getGenerationByRegion
readReal-time 5-min generation mix (hydro/thermal/nuclear/renewable/import, MW).
Input schema
{ "type": "object", "properties": { "regionId": { "type": "integer", "examples": [ 1002 ], "oneOf": [ { "type": "string" }, { "type": "number" } ] } }, "additionalProperties": false }Defaults to the SADI total. importMw is null for most provinces.
getServiceInfo
readDescribe the CAMMESA endpoints, update cadence, and run a live reachability probe.
Input schema
{ "type": "object", "properties": {}, "additionalProperties": false }
