Skip to main content
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,
    "developer": null
  },
  "data": [
    {
      "iso": "ERCO",
      "queue_id": "12INR0059b",
      "project_name": "HOVEY (Barilla Solar 1B)",
      "capacity_mw": 7.4,
      "technology": "Photovoltaic Solar",
      "fuel": "SOL",
      "status": "Planned",
      "detailed_status": "Active",
      "operating_date": "2025-11-30T08:00:00.000Z",
      "request_date": null,
      "county": "Pecos",
      "state": "TX",
      "queue_position": null,
      "interconnecting_entity": "First Solar",
      "developer": "Unable to find",
      "gim_study_phase": null,
      "screening_study_started": null,
      "screening_study_complete": null,
      "fis_requested": null,
      "fis_approved": null,
      "ia_signed": "2013-12-26T08: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",
      "inr_request_number": "12INR0059b",
      "projected_cod": "2025-11-30T08:00:00.000Z",
      "changes_from_last_report": null,
      "proof_of_site_control": null,
      "economic_study_required": null,
      "financial_security": true,
      "air_permit": null,
      "ghg_permit": null,
      "water_availability": null,
      "meets_691_requirements": null,
      "meets_69_requirements": null,
      "meets_59_requirements": null,
      "construction_start": null,
      "construction_end": null,
      "approved_for_energization": "2015-09-02T07:00:00.000Z",
      "approved_for_synchronization": "2015-09-14T07:00:00.000Z",
      "comment": null,
      "size_category": "Small",
      "model_ready_date": "2015-09-02T07:00:00.000Z",
      "change_indicators": null,
      "approved_for_commercial_operation": null,
      "status_last_updated": null
    }
  ]
}

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

curl -H "x-api-key: your_api_key_here" \
  "https://api.cleanview.co/api/v1/interconnection/ercot?technology=Solar&status=Planned&state=TX&limit=50"
Returns active solar projects in the ERCOT queue. Uses technology=Solar for standardized filtering.
curl -H "x-api-key: your_api_key_here" \
  "https://api.cleanview.co/api/v1/interconnection/ercot?technology=Wind&min_capacity=200&limit=50"
Finds large-scale wind projects. Uses technology=Wind for wind turbine projects.
curl -H "x-api-key: your_api_key_here" \
  "https://api.cleanview.co/api/v1/interconnection/ercot?technology=Battery&limit=50"
Filters for battery energy storage projects.
curl -H "x-api-key: your_api_key_here" \
  "https://api.cleanview.co/api/v1/interconnection/ercot?technology=Solar,Wind,Battery&limit=50"
Uses comma-separated values for multiple technology filtering.

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,
    "developer": null
  },
  "data": [
    {
      "iso": "ERCO",
      "queue_id": "12INR0059b",
      "project_name": "HOVEY (Barilla Solar 1B)",
      "capacity_mw": 7.4,
      "technology": "Photovoltaic Solar",
      "fuel": "SOL",
      "status": "Planned",
      "detailed_status": "Active",
      "operating_date": "2025-11-30T08:00:00.000Z",
      "request_date": null,
      "county": "Pecos",
      "state": "TX",
      "queue_position": null,
      "interconnecting_entity": "First Solar",
      "developer": "Unable to find",
      "gim_study_phase": null,
      "screening_study_started": null,
      "screening_study_complete": null,
      "fis_requested": null,
      "fis_approved": null,
      "ia_signed": "2013-12-26T08: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",
      "inr_request_number": "12INR0059b",
      "projected_cod": "2025-11-30T08:00:00.000Z",
      "changes_from_last_report": null,
      "proof_of_site_control": null,
      "economic_study_required": null,
      "financial_security": true,
      "air_permit": null,
      "ghg_permit": null,
      "water_availability": null,
      "meets_691_requirements": null,
      "meets_69_requirements": null,
      "meets_59_requirements": null,
      "construction_start": null,
      "construction_end": null,
      "approved_for_energization": "2015-09-02T07:00:00.000Z",
      "approved_for_synchronization": "2015-09-14T07:00:00.000Z",
      "comment": null,
      "size_category": "Small",
      "model_ready_date": "2015-09-02T07:00:00.000Z",
      "change_indicators": null,
      "approved_for_commercial_operation": null,
      "status_last_updated": null
    }
  ]
}
Complete Upstream Data: Each project includes all 49 database columns from ERCOT’s interconnection queue at the top level. This provides complete transparency with both standardized fields (normalized across all ISOs) and ERCOT-specific raw fields like inr_request_number, screening_study_required, and planned_outage_season.

Response Fields

Core Identification Fields

FieldTypeDescription
isostringAlways “ERCO” for ERCOT data
queue_idstringUnique ERCOT queue identifier
project_namestringOfficial project name in ERCOT queue
inr_request_numberstringInterconnection Request (INR) number
balancing_authority_codestringAlways “ERCO”
queue_positionstringQueue position (null - not provided by ERCOT)

Capacity & Technology

FieldTypeDescription
capacity_mwnumberProject nameplate capacity in MW
technologystringTechnology type (e.g., “Photovoltaic Solar”, “Wind”)
technology_displaystringERCOT’s display technology description
technology_normalizedstringStandardized technology for cross-ISO filtering
fuelstringERCOT fuel code (SOL, WND, GAS, etc.)
fuel_displaystringHuman-readable fuel type description

Project Status & Dates

FieldTypeDescription
statusstringStandardized status (Planned, Operating, Cancelled)
detailed_statusstringOriginal ERCOT status (e.g., “Active”)
operating_datedateExpected/actual commercial operation date
projected_coddateProjected commercial operation date
request_datedateInterconnection request date (often null)
status_last_updateddateDate status was last updated

Location

FieldTypeDescription
statestringState code (primarily TX)
countystringCounty name where project is located

Grid Connection

FieldTypeDescription
interconnecting_entitystringInterconnection customer/developer name
poi_locationstringPoint of Interconnection with voltage level
cdr_reporting_zonestringCDR zone (NORTH, SOUTH, WEST, HOUSTON)

Study Process & Milestones

FieldTypeDescription
gim_study_phasestringGeneration Interconnection & Model (GIM) study phase
screening_study_starteddateScreening study start date
screening_study_completedateScreening study completion date
fis_requesteddateFacility Impact Study (FIS) requested date
fis_approveddateFacility Impact Study approved date
ia_signeddateInterconnection Agreement (IA) signed date

Project Requirements & Permits

FieldTypeDescription
proof_of_site_controlbooleanSite control documentation status
economic_study_requiredbooleanWhether economic study is required
financial_securitybooleanFinancial security posting status
air_permitbooleanAir quality permit status
ghg_permitbooleanGreenhouse gas permit status
water_availabilitybooleanWater availability documentation status
meets_691_requirementsbooleanMeets Planning Guide Section 6.9.1 requirements
meets_69_requirementsbooleanMeets Planning Guide Section 6.9 requirements
meets_59_requirementsbooleanMeets Planning Guide Section 5.9 requirements

Construction & Energization

FieldTypeDescription
construction_startdateConstruction start date
construction_enddateConstruction completion date
approved_for_energizationdateDate approved for energization
approved_for_synchronizationdateDate approved for synchronization to grid
approved_for_commercial_operationdateDate approved for commercial operation
model_ready_datedateDate project model was ready

Project Tracking

FieldTypeDescription
size_categorystringProject size classification (Small, Medium, Large)
changes_from_last_reportstringNotable changes since last queue report
change_indicatorsstringIndicators of project changes
commentstringAdditional ERCOT comments or notes

Developer Information

FieldTypeDescription
developerstringDeveloper name from Cleanview enrichment
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

Successful response with ERCOT interconnection queue data

iso
string
Example:

"ERCOT"

summary
object

Summary metadata for pagination

filters
object

Applied filters for the request

data
object[]

Array of interconnection queue records