Iir Data#
Get IIR data
Endpoint#
GET |
https://vulcan.api.synmax.com/v2/iir_data |
Request Examples#
curl -X GET "https://vulcan.api.synmax.com/v2/iir_data" \
-H "Access-Key: $API_TOKEN"
from synmax.vulcan.v2 import VulcanApiClient
SYNMAX_ACCESS_TOKEN = "<YOUR_API_TOKEN>"
vulcan_api_client = VulcanApiClient(access_token=SYNMAX_ACCESS_TOKEN)
iir_data_resp = vulcan_api_client.iir_data()
iir_data_df = iir_data_resp.df()
iir_data_df.head()
Response#
Parameters |
Type |
Description |
Example |
|---|---|---|---|
balancing_authority |
string |
IIR balancing authority responsible for a given data center |
ERCOT |
created_at |
string |
ISO date on which the record was created |
2025-04-28T12:34:56Z |
data_center_type |
string |
IIR type of data center |
Hyperscale Data Center |
date_first_seen |
string |
Date of each update to the dataset |
2025-04-28 |
date_first_seen_online |
string |
Online date of the data center unit when first added to the database |
2025-12-31 |
date_planned_operation |
string |
IIR online date for a given data center |
2026-05-29 |
modified_at |
string |
ISO date on which the record was last modified |
2025-11-17 |
owner_name |
string |
IIR owner of data center |
Crusoe Energy Systems, Incorporated |
plant_id |
integer |
IIR plant id |
3492281 |
plant_name |
string |
IIR plant name |
Abilene - Longhorn Data Center Campus (Stargate) |
plant_status |
string |
IIR construction status of the data center |
Operational |
state_code |
string |
IIR data center state |
TX |
synmax_id |
string |
A unique key of plant id and unit id |
3492281-2587917 |
unit_capacity_mw |
number |
IIR data center unit capacity in megawatts (MW) |
120 |
unit_id |
integer |
IIR id given to each unit for a given data center |
2587918 |
unit_name |
string |
IIR name of each unit for a given data center |
CADCP8 |
unit_status |
string |
IIR construction status of the unit for a given data center |
Under Construction |
Normal Output#
Note
No CSV data available for this endpoint.