GET
/
interconnection
/
miso
Get MISO interconnection queue data
curl --request GET \
  --url https://api.cleanview.co/api/v1/interconnection/miso \
  --header 'x-api-key: <api-key>'
{
  "iso": "MISO",
  "summary": {
    "limit": 50,
    "offset": 0,
    "total_results": 1567,
    "has_more": true,
    "current_page": 1,
    "total_pages": 32
  },
  "filters": {
    "state": null,
    "technology": null,
    "status": null,
    "min_capacity": null,
    "max_capacity": null,
    "developer": null
  },
  "data": [
    {
      "iso": "MISO",
      "queue_id": "J1000",
      "project_name": "Prairie Wind Solar Farm",
      "capacity_mw": 50,
      "technology": "Solar",
      "fuel": "Solar",
      "status": "Operating",
      "detailed_status": "In Service",
      "operating_date": "2021-10-01T04:00:00.000Z",
      "request_date": "2018-03-12T04:00:00.000Z",
      "county": "Grant",
      "state": "WI",
      "queue_position": "J1000",
      "interconnecting_entity": "American Transmission Company",
      "developer": "Invenergy",
      "study_cycle": "DPP-2018-APR",
      "study_group": "East (ATC)",
      "service_type": "Network Resource Interconnection Service (NRIS)",
      "balancing_authority_code": "MISO",
      "technology_normalized": "Solar",
      "study_phase": "GIA",
      "post_gia_status": "In Service",
      "winter_capacity_mw": 50,
      "summer_capacity_mw": 50
    },
    {
      "iso": "MISO",
      "queue_id": "M1456",
      "project_name": "Heartland Wind Project",
      "capacity_mw": 200,
      "technology": "Wind",
      "fuel": "Wind",
      "status": "Planned",
      "detailed_status": "Active",
      "operating_date": "2025-12-01T05:00:00.000Z",
      "request_date": "2023-06-15T05:00:00.000Z",
      "county": "Story",
      "state": "IA",
      "queue_position": "M1456",
      "interconnecting_entity": "MidAmerican Energy",
      "developer": "NextEra Energy Resources",
      "study_cycle": "DPP-2023-OCT",
      "study_group": "Central (ITC)",
      "service_type": "Energy Resource Interconnection Service (ERIS)",
      "balancing_authority_code": "MISO",
      "technology_normalized": "Wind",
      "study_phase": "DPP",
      "post_gia_status": null,
      "winter_capacity_mw": 200,
      "summer_capacity_mw": 195
    }
  ]
}

Overview

The MISO interconnection queue endpoint provides access to real-time data from Midcontinent Independent System Operator (MISO) interconnection queue. MISO serves 15 states and one Canadian province across the Midwest and South.
MISO Coverage: Contains 1,500+ projects across the Midwest and South. Top technologies: Wind (500+ projects), Solar (400+ projects), Natural Gas (300+ projects), Battery Storage (200+ projects).

Endpoint

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

Coverage Area

States Served: Arkansas, Illinois, Indiana, Iowa, Kentucky, Louisiana, Michigan, Minnesota, Mississippi, Missouri, Montana, North Dakota, Texas, Wisconsin, and parts of South Dakota. Also serves Manitoba, Canada.

Query Parameters

ParameterTypeDefaultDescription
limitinteger1000Number of records to return (50-5000)
offsetinteger0Number of records to skip
statestring-Filter by state code - 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 Distribution

TechnologyCountDescription
Wind500+Wind turbine projects (dominant in MISO)
Solar400+Solar photovoltaic projects
Natural Gas300+Natural gas generation
Battery200+Battery energy storage systems
Other100+Other technologies

Status Options

StatusDescription
PlannedActive projects in queue
OperatingCommercial operation achieved
CancelledWithdrawn or terminated

Example Requests

Response Schema

{
  "iso": "MISO",
  "summary": {
    "limit": 50,
    "offset": 0,
    "total_results": 1567,
    "has_more": true,
    "current_page": 1,
    "total_pages": 32
  },
  "filters": {
    "state": null,
    "technology": null,
    "status": null,
    "min_capacity": null,
    "max_capacity": null,
    "developer": null
  },
  "data": [
    {
      "iso": "MISO",
      "queue_id": "J1000",
      "project_name": "Prairie Wind Solar Farm",
      "capacity_mw": 50,
      "technology": "Solar",
      "fuel": "Solar",
      "status": "Operating",
      "detailed_status": "In Service",
      "operating_date": "2021-10-01T04:00:00.000Z",
      "request_date": "2018-03-12T04:00:00.000Z",
      "county": "Grant",
      "state": "WI",
      "queue_position": "J1000",
      "interconnecting_entity": "American Transmission Company",
      "developer": "Invenergy",
      "study_cycle": "DPP-2018-APR",
      "study_group": "East (ATC)",
      "service_type": "Network Resource Interconnection Service (NRIS)",
      "balancing_authority_code": "MISO",
      "technology_normalized": "Solar",
      "study_phase": "GIA",
      "post_gia_status": "In Service",
      "winter_capacity_mw": 50,
      "summer_capacity_mw": 50
    },
    {
      "iso": "MISO",
      "queue_id": "M1456",
      "project_name": "Heartland Wind Project",
      "capacity_mw": 200,
      "technology": "Wind",
      "fuel": "Wind",
      "status": "Planned",
      "detailed_status": "Active",
      "operating_date": "2025-12-01T05:00:00.000Z",
      "request_date": "2023-06-15T05:00:00.000Z",
      "county": "Story",
      "state": "IA",
      "queue_position": "M1456",
      "interconnecting_entity": "MidAmerican Energy",
      "developer": "NextEra Energy Resources",
      "study_cycle": "DPP-2023-OCT",
      "study_group": "Central (ITC)",
      "service_type": "Energy Resource Interconnection Service (ERIS)",
      "balancing_authority_code": "MISO",
      "technology_normalized": "Wind",
      "study_phase": "DPP",
      "post_gia_status": null,
      "winter_capacity_mw": 200,
      "summer_capacity_mw": 195
    }
  ]
}
All MISO interconnection data follows the standardized response format with MISO-specific fields including seasonal capacity ratings and study cycle information.

MISO-Specific Fields

FieldDescription
summer_capacity_mwSummer capacity rating (MW)
winter_capacity_mwWinter capacity rating (MW)
study_cycleDefinitive Planning Phase cycle
study_groupStudy group assignment
Data Updates: MISO queue data is updated based on MISO’s Generator Interconnection Queue reports.
Wind Focus: MISO territory has significant wind resources, particularly in the upper Midwest states. Wind projects typically have seasonal capacity variations reflected in the summer/winter capacity fields.

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

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 MISO interconnection queue data

The response is of type object.