GET
/
interconnection
/
pjm
Get PJM interconnection queue data
curl --request GET \
  --url https://api.cleanview.co/api/v1/interconnection/pjm \
  --header 'x-api-key: <api-key>'
{
  "iso": "PJM",
  "summary": {
    "limit": 50,
    "offset": 0,
    "total_results": 1834,
    "has_more": true,
    "current_page": 1,
    "total_pages": 37
  },
  "filters": {
    "state": null,
    "technology": null,
    "status": null,
    "min_capacity": null,
    "max_capacity": null,
    "developer": null
  },
  "data": [
    {
      "iso": "PJM",
      "queue_id": "AB3-123",
      "project_name": "Keystone Solar Project",
      "capacity_mw": 200.0,
      "technology": "Solar",
      "fuel": "Solar",
      "status": "Planned",
      "detailed_status": "Active",
      "operating_date": "2025-12-01T00:00:00.000Z",
      "request_date": "2022-03-15T00:00:00.000Z",
      "county": "Chester",
      "state": "PA",
      "queue_position": null,
      "interconnecting_entity": null,
      "developer": "Lightsource BP",
      "feasibility_study_status": "Complete",
      "system_impact_study_status": "In Progress",
      "facilities_study_status": "Not Started",
      "interconnection_agreement_status": null,
      "construction_service_agreement_status": null,
      "transmission_owner": "PECO",
      "project_type": "Generation Interconnection",
      "balancing_authority_code": "PJM",
      "technology_normalized": "Solar",
      "project_number": "AB3-123",
      "commercial_name": "Keystone Solar",
      "maximum_facility_output": 200
    },
    {
      "iso": "PJM",
      "queue_id": "AC1-456",
      "project_name": "Buckeye Wind Farm",
      "capacity_mw": 150.0,
      "technology": "Wind",
      "fuel": "Wind",
      "status": "Operating",
      "detailed_status": "In Service",
      "operating_date": "2024-06-15T00:00:00.000Z",
      "request_date": "2021-08-20T00:00:00.000Z",
      "county": "Huron",
      "state": "OH",
      "queue_position": null,
      "interconnecting_entity": null,
      "developer": "EDF Renewables",
      "feasibility_study_status": "Complete",
      "system_impact_study_status": "Complete",
      "facilities_study_status": "Complete",
      "interconnection_agreement_status": "Executed",
      "construction_service_agreement_status": "Executed",
      "transmission_owner": "AEP",
      "project_type": "Generation Interconnection",
      "balancing_authority_code": "PJM",
      "technology_normalized": "Wind",
      "project_number": "AC1-456",
      "commercial_name": "Buckeye Wind",
      "maximum_facility_output": 150
    }
  ]
}

Overview

The PJM interconnection queue endpoint provides access to real-time data from PJM Interconnection’s generation interconnection queue. PJM serves 13 states and the District of Columbia in the Mid-Atlantic and Midwest regions.
PJM Coverage: Contains 9,200+ projects across 13 states. Top technologies: Solar (4,000+ projects), Natural Gas (1,100+ projects), Storage (1,000+ projects), Wind (700+ projects).

Endpoint

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

Coverage Area

States Served: Delaware, Illinois, Indiana, Kentucky, Maryland, Michigan, New Jersey, North Carolina, Ohio, Pennsylvania, Tennessee, Virginia, West Virginia, and Washington D.C.

Query Parameters

ParameterTypeDefaultDescription
limitinteger1000Number of records to return (50-5000)
offsetinteger0Number of records to skip
statestring-Filter by state code (PA, OH, NJ, etc.) - supports comma-separated
technologystring-Filter by standardized technology type (derived from fuel_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
Solar4,000+Solar photovoltaic projects
Natural Gas1,100+Natural gas generation
Storage1,000+Battery energy storage systems
Wind700+Wind turbine projects
Solar; Storage500+Combined solar and storage projects
Methane190+Methane/biogas projects
Coal140+Coal generation
Hydro95+Hydroelectric projects
Offshore Wind80+Offshore wind projects
Nuclear78+Nuclear generation
Other300+Other technologies
Technology Mapping: The technology field is standardized from PJM’s original fuel_type data to provide consistent filtering across all CleanView APIs.

Status Options

StatusCountDescription
Planned1,200+Active projects in queue
Operating400+Commercial operation achieved
Cancelled200+Withdrawn or terminated

Top States by Project Count

StateProject CountTop Technology
Pennsylvania~400Solar, Natural Gas
Ohio~300Solar, Wind
New Jersey~250Solar
Illinois~200Solar, Wind
Virginia~180Solar

Example Requests

Response Schema

{
  "iso": "PJM",
  "summary": {
    "limit": 50,
    "offset": 0,
    "total_results": 1834,
    "has_more": true,
    "current_page": 1,
    "total_pages": 37
  },
  "filters": {
    "state": null,
    "technology": null,
    "status": null,
    "min_capacity": null,
    "max_capacity": null,
    "developer": null
  },
  "data": [
    {
      "iso": "PJM",
      "queue_id": "AB3-123",
      "project_name": "Keystone Solar Project",
      "capacity_mw": 200.0,
      "technology": "Solar",
      "fuel": "Solar",
      "status": "Planned",
      "detailed_status": "Active",
      "operating_date": "2025-12-01T00:00:00.000Z",
      "request_date": "2022-03-15T00:00:00.000Z",
      "county": "Chester",
      "state": "PA",
      "queue_position": null,
      "interconnecting_entity": null,
      "developer": "Lightsource BP",
      "feasibility_study_status": "Complete",
      "system_impact_study_status": "In Progress",
      "facilities_study_status": "Not Started",
      "interconnection_agreement_status": null,
      "construction_service_agreement_status": null,
      "transmission_owner": "PECO",
      "project_type": "Generation Interconnection",
      "balancing_authority_code": "PJM",
      "technology_normalized": "Solar",
      "project_number": "AB3-123",
      "commercial_name": "Keystone Solar",
      "maximum_facility_output": 200
    },
    {
      "iso": "PJM",
      "queue_id": "AC1-456",
      "project_name": "Buckeye Wind Farm",
      "capacity_mw": 150.0,
      "technology": "Wind",
      "fuel": "Wind",
      "status": "Operating",
      "detailed_status": "In Service",
      "operating_date": "2024-06-15T00:00:00.000Z",
      "request_date": "2021-08-20T00:00:00.000Z",
      "county": "Huron",
      "state": "OH",
      "queue_position": null,
      "interconnecting_entity": null,
      "developer": "EDF Renewables",
      "feasibility_study_status": "Complete",
      "system_impact_study_status": "Complete",
      "facilities_study_status": "Complete",
      "interconnection_agreement_status": "Executed",
      "construction_service_agreement_status": "Executed",
      "transmission_owner": "AEP",
      "project_type": "Generation Interconnection",
      "balancing_authority_code": "PJM",
      "technology_normalized": "Wind",
      "project_number": "AC1-456",
      "commercial_name": "Buckeye Wind",
      "maximum_facility_output": 150
    }
  ]
}

Response Fields

Core Fields (Always Present)

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

Location & Timing

FieldTypeDescription
statestringState code (PA, OH, NJ, etc.)
countystringCounty name where project is located
operating_datedateExpected/actual commercial operation date
request_datedateDate project entered queue

Technology & Fuel

FieldTypeDescription
fuelstringOriginal fuel type from PJM data
technologystringStandardized technology type (derived from fuel_type)
technology_normalizedstringSame as technology for consistency

PJM-Specific Fields

FieldTypeDescription
transmission_ownerstringTransmission utility (PECO, PPL, etc.)
project_typestringInterconnection type (Generation Interconnection, etc.)

Study Process

FieldTypeDescription
feasibility_study_statusstringFeasibility study completion status
system_impact_study_statusstringSystem impact study status
facilities_study_statusstringFacilities study completion status
interconnection_agreement_statusstringInterconnection agreement execution status

Developer Information

FieldTypeDescription
interconnecting_entitystringAlways null - PJM queue does not provide interconnecting entity information
developerstringDeveloper name (limited availability)
Data Updates: PJM queue data is updated monthly based on PJM’s New Services Queue reports. The API reflects the most recent interconnection queue data available.
Study Process: PJM uses a detailed multi-phase study process including feasibility, system impact, and facilities studies. The study status fields track progress through each phase.
Missing Coordinates: PJM data does not include latitude/longitude coordinates. Use the county, state, and transmission_owner 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

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

The response is of type object.