Skip to main content
GET
/
interconnection
/
spp
Get SPP interconnection queue data
curl --request GET \
  --url https://api.cleanview.co/api/v1/interconnection/spp \
  --header 'x-api-key: <api-key>'
{
  "iso": "SPP",
  "summary": {
    "limit": 50,
    "offset": 0,
    "total_results": 2806,
    "has_more": true,
    "current_page": 1,
    "total_pages": 57
  },
  "filters": {
    "state": null,
    "technology": null,
    "status": null,
    "min_capacity": null,
    "max_capacity": null,
    "developer": null
  },
  "data": [
    {
      "iso": "SWPP",
      "queue_id": "GEN-2011-019",
      "project_name": "Woodward County",
      "capacity_mw": 175,
      "technology": "Wind",
      "fuel": null,
      "status": "Planned",
      "detailed_status": "IA FULLY EXECUTED/ON SCHEDULE",
      "operating_date": "2027-12-31",
      "request_date": "3/31/2011",
      "county": "Woodward County",
      "state": "OK",
      "queue_position": null,
      "interconnecting_entity": null,
      "developer": null,
      "balancing_authority_code": "SWPP",
      "technology_normalized": "Wind",
      "generation_interconnection_number": "GEN-2011-019",
      "ifs_queue_number": null,
      "current_cluster": "DISIS-2011-001-8",
      "cluster_group": "04 SOUTHEAST",
      "nearest_town_or_county": "Woodward County",
      "to_at_poi": "OGE",
      "in_service_date": "2012-12-31",
      "commercial_operation_date": "2027-12-31",
      "cessation_date": null,
      "original_generator_commercial_op_date": null,
      "capacity": 175,
      "max_summer_mw": 175,
      "max_winter_mw": 175,
      "service_type": "ER/NR",
      "requested_maximum_injection_capability_mw": 0,
      "requested_network_resource_deliverability_mw": 0,
      "nameplate_capacity": 0,
      "generation_type": "Wind",
      "fuel_type": null,
      "substation_or_line": "Woodward EHV 345kV",
      "request_received": "3/31/2011",
      "date_withdrawn": null,
      "jtiq_participant": null,
      "jtiq_commitment": null,
      "cause_of_delay": null,
      "status_detailed": "IA FULLY EXECUTED/ON SCHEDULE"
    }
  ]
}

Overview

The SPP interconnection queue endpoint provides access to real-time data from Southwest Power Pool’s interconnection queue. SPP serves the central United States with significant wind resources.
SPP Coverage: Contains 800+ projects across the central U.S. Top technologies: Wind (400+ projects), Solar (200+ projects), Battery Storage (100+ projects), Natural Gas (100+ projects).

Endpoint

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

Coverage Area

States Served: Arkansas, Kansas, Louisiana, Missouri, Nebraska, New Mexico, Oklahoma, and Texas, with portions of Iowa, Minnesota, Montana, North Dakota, South Dakota, and Wyoming.

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
Wind400+Wind turbine projects (dominant in SPP territory)
Solar200+Solar photovoltaic projects
Battery100+Battery energy storage systems
Natural Gas100+Natural gas generation
Other50+Other technologies

Status Options

StatusDescription
PlannedActive projects in queue
OperatingCommercial operation achieved
CancelledWithdrawn or terminated

Top States by Project Count

StateProject CountTop Technology
Oklahoma340Wind, Solar
Kansas199Wind
Nebraska129Wind
Texas106Wind, Solar
New Mexico75Solar, Wind

Example Requests

curl -H "x-api-key: your_api_key_here" \
  "https://api.cleanview.co/api/v1/interconnection/spp?technology=Wind&state=KS&limit=50"
curl -H "x-api-key: your_api_key_here" \
  "https://api.cleanview.co/api/v1/interconnection/spp?technology=Solar&min_capacity=100&limit=50"
curl -H "x-api-key: your_api_key_here" \
  "https://api.cleanview.co/api/v1/interconnection/spp?developer=NextEra&limit=50"
Filters for projects developed by NextEra Energy Resources. Uses partial matching to find all NextEra projects in SPP territory.

Response Schema

{
  "iso": "SPP",
  "summary": {
    "limit": 50,
    "offset": 0,
    "total_results": 2806,
    "has_more": true,
    "current_page": 1,
    "total_pages": 57
  },
  "filters": {
    "state": null,
    "technology": null,
    "status": null,
    "min_capacity": null,
    "max_capacity": null,
    "developer": null
  },
  "data": [
    {
      "iso": "SWPP",
      "queue_id": "GEN-2011-019",
      "project_name": "Woodward County",
      "capacity_mw": 175,
      "technology": "Wind",
      "fuel": null,
      "status": "Planned",
      "detailed_status": "IA FULLY EXECUTED/ON SCHEDULE",
      "operating_date": "2027-12-31",
      "request_date": "3/31/2011",
      "county": "Woodward County",
      "state": "OK",
      "queue_position": null,
      "interconnecting_entity": null,
      "developer": null,
      "balancing_authority_code": "SWPP",
      "technology_normalized": "Wind",
      "generation_interconnection_number": "GEN-2011-019",
      "ifs_queue_number": null,
      "current_cluster": "DISIS-2011-001-8",
      "cluster_group": "04 SOUTHEAST",
      "nearest_town_or_county": "Woodward County",
      "to_at_poi": "OGE",
      "in_service_date": "2012-12-31",
      "commercial_operation_date": "2027-12-31",
      "cessation_date": null,
      "original_generator_commercial_op_date": null,
      "capacity": 175,
      "max_summer_mw": 175,
      "max_winter_mw": 175,
      "service_type": "ER/NR",
      "requested_maximum_injection_capability_mw": 0,
      "requested_network_resource_deliverability_mw": 0,
      "nameplate_capacity": 0,
      "generation_type": "Wind",
      "fuel_type": null,
      "substation_or_line": "Woodward EHV 345kV",
      "request_received": "3/31/2011",
      "date_withdrawn": null,
      "jtiq_participant": null,
      "jtiq_commitment": null,
      "cause_of_delay": null,
      "status_detailed": "IA FULLY EXECUTED/ON SCHEDULE"
    }
  ]
}
Complete Upstream Data: Each project includes all 43 database columns from SPP’s interconnection queue at the top level. This provides complete transparency with both standardized fields (normalized across all ISOs) and SPP-specific raw fields like generation_interconnection_number, current_cluster, and jtiq_participant.

Response Fields

Core Identification Fields

FieldTypeDescription
isostringAlways “SWPP” for SPP data
queue_idstringUnique SPP queue identifier (e.g., “GEN-2011-019”)
generation_interconnection_numberstringOfficial SPP Generation Interconnection Request number
ifs_queue_numberstringSPP Integrated Facilities Study queue number (if applicable)
project_namestringOfficial project name in SPP queue
balancing_authority_codestringAlways “SWPP”
queue_positionstringQueue position number (typically null in SPP data)

Capacity & Technology

FieldTypeDescription
capacity_mwnumberProject nameplate capacity in MW
capacitynumberDuplicate of capacity_mw for compatibility
max_summer_mwnumberMaximum summer capacity rating in MW
max_winter_mwnumberMaximum winter capacity rating in MW
nameplate_capacitynumberGenerator nameplate capacity in MW
requested_maximum_injection_capability_mwnumberRequested maximum MW injection to grid
requested_network_resource_deliverability_mwnumberRequested network resource deliverability capacity in MW
technologystringSPP’s technology classification (e.g., “Wind”, “Solar”)
generation_typestringDetailed generation type from SPP source
technology_normalizedstringStandardized technology for cross-ISO filtering
fuelstringPrimary fuel source code
fuel_typestringDetailed fuel type description with hybrid notation

Project Status & Dates

FieldTypeDescription
statusstringStandardized status (Planned, Operating, Cancelled, Inactive)
detailed_statusstringOriginal SPP detailed status code
status_detailedstringDuplicate of detailed_status for compatibility
request_datestringInterconnection request submission date
request_receivedstringDate SPP received interconnection request
in_service_datestringOriginally scheduled in-service date
operating_datestringExpected or actual commercial operation date
commercial_operation_datestringActual commercial operation date when achieved
original_generator_commercial_op_datestringOriginal projected commercial operation date
date_withdrawnstringDate project was withdrawn from queue (if applicable)
cessation_datestringDate project operations ceased (if applicable)

Location

FieldTypeDescription
statestringState code (OK, KS, NE, TX, NM, MO, ND, AR, SD, LA, MT, IA, MN)
countystringCounty name where project is located
nearest_town_or_countystringNearest town or county from SPP source

Study Process & Cluster Information

FieldTypeDescription
current_clusterstringCurrent DISIS cluster assignment (e.g., “DISIS-2011-001-8”)
cluster_groupstringSPP transmission zone for cluster studies (e.g., “04 SOUTHEAST”)
cause_of_delaystringReason for study process delays (if applicable)

Grid Connection & Service

FieldTypeDescription
service_typestringInterconnection service type (ER, NR, or ER/NR)
to_at_poistringTransmission Owner at Point of Interconnection
substation_or_linestringSpecific substation or transmission line for interconnection
interconnecting_entitystringInterconnecting utility entity (typically null)

SPP-Specific Fields

FieldTypeDescription
jtiq_participantstringJoint Targeted Interconnection Queue participant (Yes/No/null)
jtiq_commitmentnumberJTIQ financial commitment amount (if applicable)

Developer Information

FieldTypeDescription
developerstringDeveloper name from Cleanview enrichment (limited coverage)

SPP Queue Terminology

DISIS (Definitive Interconnection System Impact Study)

SPP’s cluster study process where projects are studied in annual cohorts grouped by transmission zone. Projects are studied together to assess cumulative system impacts and allocate network upgrade costs equitably among projects in each cluster.

Cluster Groups

SPP divides its territory into transmission zones (e.g., “04 SOUTHEAST”, “03 CENTRAL”) for organizing DISIS cluster studies. Each annual DISIS cohort (e.g., “DISIS-2011-001”) contains projects grouped by these zones for efficient regional analysis.

Service Types

  • ER (Energy Resource): Energy-only interconnection without transmission network upgrade obligations
  • NR (Network Resource): Full network service requiring participation in network upgrade costs and providing firm transmission capacity
  • ER/NR: Hybrid service combining both energy resource and network resource interconnection rights

JTIQ (Joint Targeted Interconnection Queue)

Coordinated interconnection study process for projects located at the SPP/MISO seam requiring joint analysis by both ISOs to assess impacts on both systems.

Generation Interconnection Agreement (GIA)

Final contract between generator and SPP governing interconnection terms, cost allocation, operational requirements, and construction milestones.

Status Categories

SPP tracks detailed project status through multiple study phases:
  • IA FULLY EXECUTED/ON SCHEDULE: Interconnection Agreement signed and project on schedule
  • IA FULLY EXECUTED/COMMERCIAL OPERATION: Project has achieved commercial operation
  • IA FULLY EXECUTED/ON SUSPENSION: Agreement executed but study process suspended
  • IA PENDING: Interconnection Agreement pending execution
  • DISIS STAGE: In Definitive Interconnection System Impact Study phase
  • FACILITY STUDY STAGE: In Facilities Study phase evaluating specific interconnection facilities
  • FEASIBILITY: In Feasibility Study phase
  • ERAS: In Early Risk Assessment Study phase (optional pre-study)
  • WITHDRAWN: Project withdrawn from queue by developer
  • TERMINATED: Project terminated by SPP
Data Updates: SPP queue data is updated based on Southwest Power Pool’s Generation Interconnection queue reports.

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

Successful response with SPP interconnection queue data

iso
string
Example:

"SPP"

summary
object

Summary metadata for pagination

filters
object

Applied filters for the request

data
object[]

Array of interconnection queue records