> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.isoview.io/llms.txt.
> For full documentation content, see https://docs.isoview.io/llms-full.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.isoview.io/_mcp/server.

# List Plants

GET /v1/plant/{iso}/{metric}/list

List all active power generation plants for a specific metric within an ISO.

Returns metadata for each plant including capacity, location, operational status,
and technology type. The metric determines which plant type is returned:
`wind` / `wind_icing` returns wind plants, `solar` / `solar_snow` returns solar plants.

**Access:** Requires `advanced` subscription level.

Reference: https://docs.isoview.io/api-reference/isoview-api/plants/list-plants-plant-iso-metric-list-get

## OpenAPI Specification

```yaml
openapi: 3.1.0
info:
  title: openapi
  version: 1.0.0
paths:
  /plant/{iso}/{metric}/list:
    get:
      operationId: list-plants-plant-iso-metric-list-get
      summary: List Plants
      description: >-
        List all active power generation plants for a specific metric within an
        ISO.


        Returns metadata for each plant including capacity, location,
        operational status,

        and technology type. The metric determines which plant type is returned:

        `wind` / `wind_icing` returns wind plants, `solar` / `solar_snow`
        returns solar plants.


        **Access:** Requires `advanced` subscription level.
      tags:
        - subpackage_plants
      parameters:
        - name: iso
          in: path
          description: ISO identifier.
          required: true
          schema:
            $ref: '#/components/schemas/PlantIsoMetricListGetParametersIso'
        - name: metric
          in: path
          description: >-
            Plant metric: generation ('wind', 'solar') or risk ('wind_icing',
            'solar_snow').
          required: true
          schema:
            $ref: '#/components/schemas/PlantIsoMetricListGetParametersMetric'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PlantResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
servers:
  - url: /v1
components:
  schemas:
    PlantIsoMetricListGetParametersIso:
      type: string
      enum:
        - pjm
        - miso
        - spp
        - ercot
        - caiso
        - nyiso
        - isone
      description: ISO identifier.
      title: PlantIsoMetricListGetParametersIso
    PlantIsoMetricListGetParametersMetric:
      type: string
      enum:
        - wind
        - solar
        - wind_icing
        - solar_snow
      description: >-
        Plant metric: generation ('wind', 'solar') or risk ('wind_icing',
        'solar_snow').
      title: PlantIsoMetricListGetParametersMetric
    PlantResponseId:
      oneOf:
        - type: string
        - type: integer
      description: Unique identifier for the plant.
      title: PlantResponseId
    PlantResponseIso:
      type: string
      enum:
        - pjm
        - miso
        - spp
        - ercot
        - caiso
        - nyiso
        - isone
      description: ID of the Balancing Authority where the plant is located.
      title: PlantResponseIso
    PlantResponse:
      type: object
      properties:
        id:
          $ref: '#/components/schemas/PlantResponseId'
          description: Unique identifier for the plant.
        name:
          type: string
          description: Human-readable name of the plant.
        plant_type:
          type: string
          description: Technology type of the plant (e.g., 'solar', 'wind').
        capacity_mw:
          type: number
          format: double
          description: Nameplate generation capacity in Megawatts (MW).
        iso:
          $ref: '#/components/schemas/PlantResponseIso'
          description: ID of the Balancing Authority where the plant is located.
        operations_begin_date:
          type: string
          format: date
          description: Date when the plant officially began commercial operations.
        state:
          type: string
          description: Two-letter abbreviation of the US state where the plant is located.
        latitude:
          type: number
          format: double
          description: Geographic latitude of the plant's location.
        longitude:
          type: number
          format: double
          description: Geographic longitude of the plant's location.
        status:
          type: string
          description: >-
            Current estimated operational status of the plant (e.g.,
            'operational', 'under construction', 'retired').
        summary:
          type:
            - string
            - 'null'
          description: >-
            Brief textual overview of the plant, including key characteristics
            or context.
        county_id:
          type:
            - string
            - 'null'
          description: Unique identifier for the county where the plant is located.
      required:
        - id
        - name
        - plant_type
        - capacity_mw
        - iso
        - operations_begin_date
        - state
        - latitude
        - longitude
        - status
      description: >-
        Comprehensive metadata for a power generation plant.


        Contains physical characteristics (capacity, technology type),
        geographic location,

        operational details, and historical timeline. Used for plant
        identification and analysis.
      title: PlantResponse
    ValidationErrorLocItems:
      oneOf:
        - type: string
        - type: integer
      title: ValidationErrorLocItems
    ValidationErrorCtx:
      type: object
      properties: {}
      title: ValidationErrorCtx
    ValidationError:
      type: object
      properties:
        loc:
          type: array
          items:
            $ref: '#/components/schemas/ValidationErrorLocItems'
        msg:
          type: string
        type:
          type: string
        input:
          description: Any type
        ctx:
          $ref: '#/components/schemas/ValidationErrorCtx'
      required:
        - loc
        - msg
        - type
      title: ValidationError
    HTTPValidationError:
      type: object
      properties:
        detail:
          type: array
          items:
            $ref: '#/components/schemas/ValidationError'
      title: HTTPValidationError
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key
      description: >-
        API key for authentication. Can also be provided in the api_key query
        parameter.

```

## SDK Code Examples

```python
import requests

url = "https://v1/plant/pjm/wind/list"

response = requests.get(url)

print(response.json())
```

```javascript
const url = 'https://v1/plant/pjm/wind/list';
const options = {method: 'GET'};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "https://v1/plant/pjm/wind/list"

	req, _ := http.NewRequest("GET", url, nil)

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby
require 'uri'
require 'net/http'

url = URI("https://v1/plant/pjm/wind/list")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)

response = http.request(request)
puts response.read_body
```

```java
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("https://v1/plant/pjm/wind/list")
  .asString();
```

```php
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://v1/plant/pjm/wind/list');

echo $response->getBody();
```

```csharp
using RestSharp;

var client = new RestClient("https://v1/plant/pjm/wind/list");
var request = new RestRequest(Method.GET);
IRestResponse response = client.Execute(request);
```

```swift
import Foundation

let request = NSMutableURLRequest(url: NSURL(string: "https://v1/plant/pjm/wind/list")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "GET"

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```