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": 834,
    "has_more": true,
    "current_page": 1,
    "total_pages": 17
  },
  "filters": {
    "state": null,
    "technology": null,
    "status": null,
    "min_capacity": null,
    "max_capacity": null,
    "developer": null
  },
  "data": [
    {
      "iso": "SWPP",
      "queue_id": "GEN-2023-045",
      "project_name": "Prairie Winds Kansas",
      "capacity_mw": 300.0,
      "technology": "Wind",
      "fuel": "Wind",
      "status": "Planned",
      "detailed_status": "Active",
      "operating_date": "2025-11-01T00:00:00.000Z",
      "request_date": "2023-03-20T00:00:00.000Z",
      "county": "Barber",
      "state": "KS",
      "queue_position": "GEN-2023-045",
      "interconnecting_entity": "Evergy Kansas Central",
      "developer": "NextEra Energy Resources",
      "balancing_authority_code": "SWPP",
      "technology_normalized": "Wind"
    },
    {
      "iso": "SWPP",
      "queue_id": "GEN-2023-089",
      "project_name": "Sooner Solar Project",
      "capacity_mw": 150.0,
      "technology": "Solar",
      "fuel": "Solar",
      "status": "Planned",
      "detailed_status": "Active",
      "operating_date": "2025-12-15T00:00:00.000Z",
      "request_date": "2023-05-10T00:00:00.000Z",
      "county": "Caddo",
      "state": "OK",
      "queue_position": "GEN-2023-089",
      "interconnecting_entity": "Public Service Company of Oklahoma",
      "developer": "Lightsource BP",
      "balancing_authority_code": "SWPP",
      "technology_normalized": "Solar"
    },
    {
      "iso": "SWPP",
      "queue_id": "GEN-2022-156",
      "project_name": "Crossroads Wind Farm",
      "capacity_mw": 200.0,
      "technology": "Wind",
      "fuel": "Wind",
      "status": "Operating",
      "detailed_status": "In Service",
      "operating_date": "2024-08-30T00:00:00.000Z",
      "request_date": "2022-09-15T00:00:00.000Z",
      "county": "Dewey",
      "state": "OK",
      "queue_position": "GEN-2022-156",
      "interconnecting_entity": "Oklahoma Gas & Electric",
      "developer": "Enel Green Power",
      "balancing_authority_code": "SWPP",
      "technology_normalized": "Wind"
    }
  ]
}

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
Kansas~200Wind
Oklahoma~150Wind, Solar
Texas~120Wind, Solar
Nebraska~100Wind
New Mexico~80Solar, Wind

Example Requests

Response Schema

{
  "iso": "SPP",
  "summary": {
    "limit": 50,
    "offset": 0,
    "total_results": 834,
    "has_more": true,
    "current_page": 1,
    "total_pages": 17
  },
  "filters": {
    "state": null,
    "technology": null,
    "status": null,
    "min_capacity": null,
    "max_capacity": null,
    "developer": null
  },
  "data": [
    {
      "iso": "SWPP",
      "queue_id": "GEN-2023-045",
      "project_name": "Prairie Winds Kansas",
      "capacity_mw": 300.0,
      "technology": "Wind",
      "fuel": "Wind",
      "status": "Planned",
      "detailed_status": "Active",
      "operating_date": "2025-11-01T00:00:00.000Z",
      "request_date": "2023-03-20T00:00:00.000Z",
      "county": "Barber",
      "state": "KS",
      "queue_position": "GEN-2023-045",
      "interconnecting_entity": "Evergy Kansas Central",
      "developer": "NextEra Energy Resources",
      "balancing_authority_code": "SWPP",
      "technology_normalized": "Wind"
    },
    {
      "iso": "SWPP",
      "queue_id": "GEN-2023-089",
      "project_name": "Sooner Solar Project",
      "capacity_mw": 150.0,
      "technology": "Solar",
      "fuel": "Solar",
      "status": "Planned",
      "detailed_status": "Active",
      "operating_date": "2025-12-15T00:00:00.000Z",
      "request_date": "2023-05-10T00:00:00.000Z",
      "county": "Caddo",
      "state": "OK",
      "queue_position": "GEN-2023-089",
      "interconnecting_entity": "Public Service Company of Oklahoma",
      "developer": "Lightsource BP",
      "balancing_authority_code": "SWPP",
      "technology_normalized": "Solar"
    },
    {
      "iso": "SWPP",
      "queue_id": "GEN-2022-156",
      "project_name": "Crossroads Wind Farm",
      "capacity_mw": 200.0,
      "technology": "Wind",
      "fuel": "Wind",
      "status": "Operating",
      "detailed_status": "In Service",
      "operating_date": "2024-08-30T00:00:00.000Z",
      "request_date": "2022-09-15T00:00:00.000Z",
      "county": "Dewey",
      "state": "OK",
      "queue_position": "GEN-2022-156",
      "interconnecting_entity": "Oklahoma Gas & Electric",
      "developer": "Enel Green Power",
      "balancing_authority_code": "SWPP",
      "technology_normalized": "Wind"
    }
  ]
}
All SPP interconnection data follows the standardized response format with core fields for project identification, capacity, technology, and status.
Data Updates: SPP queue data is updated based on Southwest Power Pool’s Generation Interconnection queue reports.
Wind Capital: SPP territory includes some of the best wind resources in North America, particularly in Kansas, Oklahoma, and the Texas Panhandle. Wind projects dominate the interconnection queue.

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

The response is of type object.