GET
/
interconnection
/
ercot
Get ERCOT interconnection queue data
curl --request GET \
  --url https://api.cleanview.co/api/v1/interconnection/ercot \
  --header 'x-api-key: <api-key>'
{
  "iso": "ERCOT",
  "summary": {
    "limit": 50,
    "offset": 0,
    "total_results": 2234,
    "has_more": true,
    "current_page": 1,
    "total_pages": 45
  },
  "filters": {
    "state": null,
    "technology": null,
    "status": null,
    "min_capacity": null,
    "max_capacity": null
  },
  "data": [
    {
      "iso": "ERCO",
      "queue_id": "12INR0059b",
      "project_name": "HOVEY (Barilla Solar 1B)",
      "capacity_mw": 7.4,
      "technology": "Solar",
      "fuel": "SOL",
      "status": "Planned",
      "detailed_status": "Active",
      "operating_date": "2025-07-31T00:00:00.000Z",
      "request_date": null,
      "county": "Pecos",
      "state": "TX",
      "queue_position": null,
      "interconnecting_entity": "Oncor Electric Delivery",
      "developer": "First Solar",
      "gim_study_phase": "Phase II",
      "screening_study_started": "2012-08-15T00:00:00.000Z",
      "screening_study_complete": "2012-10-30T00:00:00.000Z",
      "fis_requested": "2012-11-15T00:00:00.000Z",
      "fis_approved": "2013-06-20T00:00:00.000Z",
      "ia_signed": "2013-12-26T00:00:00.000Z",
      "poi_location": "60385 Solstice 138kV",
      "cdr_reporting_zone": "WEST",
      "technology_display": "Photovoltaic Solar",
      "fuel_display": "Solar",
      "balancing_authority_code": "ERCO",
      "technology_normalized": "Solar"
    },
    {
      "iso": "ERCO",
      "queue_id": "23GEN0123",
      "project_name": "West Texas Wind Farm",
      "capacity_mw": 250.0,
      "technology": "Wind",
      "fuel": "WND",
      "status": "Planned",
      "detailed_status": "Active",
      "operating_date": "2026-03-15T00:00:00.000Z",
      "request_date": "2023-01-10T00:00:00.000Z",
      "county": "Crockett",
      "state": "TX",
      "queue_position": null,
      "interconnecting_entity": "AEP Texas",
      "developer": "NextEra Energy",
      "gim_study_phase": "Phase I",
      "screening_study_started": "2023-03-01T00:00:00.000Z",
      "screening_study_complete": null,
      "fis_requested": null,
      "fis_approved": null,
      "ia_signed": null,
      "poi_location": "Crockett 345kV Substation",
      "cdr_reporting_zone": "WEST",
      "technology_display": "Wind",
      "fuel_display": "Wind",
      "balancing_authority_code": "ERCO",
      "technology_normalized": "Wind"
    }
  ]
}

Overview

The ERCOT interconnection queue endpoint provides access to real-time data from the Electric Reliability Council of Texas (ERCOT) interconnection queue, which serves most of Texas.
ERCOT Coverage: Contains 2,200+ projects primarily in Texas (99%). Top technologies: Solar (800+ projects), Wind (400+ projects), Battery Storage (350+ projects).
Hybrid Projects: ERCOT represents each technology component of hybrid projects (e.g., solar + storage) as separate rows in their Excel source files with different INR numbers. Our API maintains this structure. See our comprehensive guide on hybrid project handling for details.

Endpoint

curl -H "x-api-key: your_api_key_here" \
  "https://api.cleanview.co/api/v1/interconnection/ercot?limit=50"

Query Parameters

ParameterTypeDefaultDescription
limitinteger1000Number of records to return (50-5000)
offsetinteger0Number of records to skip
statestring-Filter by state code (primarily TX) - supports comma-separated
technologystring-Filter by standardized technology type - supports comma-separated
statusstring-Filter by standardized status
min_capacitynumber-Minimum capacity in MW
max_capacitynumber-Maximum capacity in MW
developerstring-Filter by developer name (supports partial matches)

Technology Options

Use standardized technology names. See our Interconnection Reference for all available options.
TechnologyCountDescription
Solar800+Solar photovoltaic projects
Wind400+Wind turbine projects
Battery350+Battery energy storage systems
Natural Gas150+Natural gas generation
Other300+Other technologies

Status Options

StatusCountDescription
Planned1,500+Active projects in queue
Operating400+Commercial operation achieved
Cancelled300+Withdrawn or terminated

Example Requests

Response Schema

{
  "iso": "ERCOT",
  "summary": {
    "limit": 50,
    "offset": 0,
    "total_results": 2234,
    "has_more": true,
    "current_page": 1,
    "total_pages": 45
  },
  "filters": {
    "state": null,
    "technology": null,
    "status": null,
    "min_capacity": null,
    "max_capacity": null
  },
  "data": [
    {
      "iso": "ERCO",
      "queue_id": "12INR0059b",
      "project_name": "HOVEY (Barilla Solar 1B)",
      "capacity_mw": 7.4,
      "technology": "Solar",
      "fuel": "SOL",
      "status": "Planned",
      "detailed_status": "Active",
      "operating_date": "2025-07-31T00:00:00.000Z",
      "request_date": null,
      "county": "Pecos",
      "state": "TX",
      "queue_position": null,
      "interconnecting_entity": "Oncor Electric Delivery",
      "developer": "First Solar",
      "gim_study_phase": "Phase II",
      "screening_study_started": "2012-08-15T00:00:00.000Z",
      "screening_study_complete": "2012-10-30T00:00:00.000Z",
      "fis_requested": "2012-11-15T00:00:00.000Z",
      "fis_approved": "2013-06-20T00:00:00.000Z",
      "ia_signed": "2013-12-26T00:00:00.000Z",
      "poi_location": "60385 Solstice 138kV",
      "cdr_reporting_zone": "WEST",
      "technology_display": "Photovoltaic Solar",
      "fuel_display": "Solar",
      "balancing_authority_code": "ERCO",
      "technology_normalized": "Solar"
    },
    {
      "iso": "ERCO",
      "queue_id": "23GEN0123",
      "project_name": "West Texas Wind Farm",
      "capacity_mw": 250.0,
      "technology": "Wind",
      "fuel": "WND",
      "status": "Planned",
      "detailed_status": "Active",
      "operating_date": "2026-03-15T00:00:00.000Z",
      "request_date": "2023-01-10T00:00:00.000Z",
      "county": "Crockett",
      "state": "TX",
      "queue_position": null,
      "interconnecting_entity": "AEP Texas",
      "developer": "NextEra Energy",
      "gim_study_phase": "Phase I",
      "screening_study_started": "2023-03-01T00:00:00.000Z",
      "screening_study_complete": null,
      "fis_requested": null,
      "fis_approved": null,
      "ia_signed": null,
      "poi_location": "Crockett 345kV Substation",
      "cdr_reporting_zone": "WEST",
      "technology_display": "Wind",
      "fuel_display": "Wind",
      "balancing_authority_code": "ERCO",
      "technology_normalized": "Wind"
    }
  ]
}

Response Fields

Core Fields (Always Present)

FieldTypeDescription
isostringAlways “ERCO” for ERCOT data
queue_idstringUnique ERCOT queue identifier
project_namestringProject name (always available for ERCOT)
capacity_mwnumberProject capacity in MW
technologystringStandardized technology type
statusstringStandardized status (Planned, Operating, Cancelled)
queue_positionstringQueue position identifier (null - ERCOT does not provide queue position data)
balancing_authority_codestringAlways “ERCO”

Location & Timing

FieldTypeDescription
statestringState code (primarily TX)
countystringCounty name where project is located
operating_datedateExpected/actual commercial operation date
request_datedateDate project entered queue (often null)

Technology & Fuel

FieldTypeDescription
fuelstringRaw fuel code from ERCOT (SOL, WND, etc.)
technology_displaystringERCOT’s technology description
fuel_displaystringERCOT’s fuel description
technology_normalizedstringSame as technology for consistency

ERCOT-Specific Fields

FieldTypeDescription
interconnecting_entitystringTransmission utility (Oncor, CenterPoint, etc.)
poi_locationstringPoint of interconnection description
cdr_reporting_zonestringERCOT congestion zone (NORTH, SOUTH, WEST, HOUSTON)
gim_study_phasestringGeneration Interconnection study phase

Study Milestones

FieldTypeDescription
screening_study_starteddateScreening study start date
screening_study_completedateScreening study completion date
fis_requesteddateFacility Impact Study requested date
fis_approveddateFacility Impact Study approved date
ia_signeddateInterconnection Agreement signed date

Developer Information

FieldTypeDescription
developerstringDeveloper name (limited availability)
Data Updates: ERCOT queue data is updated weekly. The API reflects the most recent Generation Interconnection Request (GIR) data available from ERCOT.
Unique Features: ERCOT data includes detailed point of interconnection information (poi_location) and congestion zone mapping (cdr_reporting_zone), making it excellent for grid analysis.
Missing Coordinates: ERCOT data does not include latitude/longitude coordinates. Use the county, poi_location, and cdr_reporting_zone fields for geographic analysis.

Authorizations

x-api-key
string
header
required

API key authentication using x-api-key header

Query Parameters

limit
integer
default:50

Number of records to return

Required range: 50 <= x <= 5000
offset
integer
default:0

Number of records to skip

state
string

Filter by state code (TX)

technology
string

Filter by technology type

min_capacity
number

Minimum capacity in MW

max_capacity
number

Maximum capacity in MW

Response

200
application/json

Successful response with ERCOT interconnection queue data

The response is of type object.