All data sources

MISO Public Data

No authmiso-public

MISO public real-time grid + market displays (no key) + the generator interconnection queue. DATA: getFuelMix, getRealTimeLoad, getLmp, getWindSolar, getInterchange, getGenerationOutages, getBindingConstraints, getInterconnectionQueue. RULES: 1. No auth. Distinct from the key-gated `miso` connector (Data Exchange, historical/bulk) — this real-time public API substitutes for most of it. 2. Options: getFuelMix day=current|today|yesterday; getLmp view=consolidated|exAnte|realTime; getWindSolar series=combined|windActual|windForecast|solarActual|solarForecast; getInterchange type=nsi|nai|...; getBindingConstraints type=realTime|subRegional|reserve. 3. getInterconnectionQueue: ~3,800 projects; filter by state/fuelType/status.

Provenance

PublisherMISO Public Data

Freshness & coverage

FreshnessFreshness not declared
GeographicNot declared
TemporalNot declared
AuthenticationNo credentials required

Methods (9)

  • getFuelMix

    read

    Generation by fuel type (incl (MISO Public Data). gas) — current/today/yesterday.

    Input schema
    {
      "type": "object",
      "properties": {
        "day": {
          "oneOf": [
            {
              "type": "string",
              "enum": [
                "current"
              ]
            },
            {
              "type": "string",
              "enum": [
                "today"
              ]
            },
            {
              "type": "string",
              "enum": [
                "yesterday"
              ]
            }
          ]
        }
      },
      "additionalProperties": false
    }
  • getRealTimeLoad

    read

    System total load (real-time).

    Input schema
    {
      "type": "object",
      "properties": {},
      "additionalProperties": false
    }
  • getLmp

    read

    Locational marginal prices — consolidated table, ex-ante, or real-time 5-min.

    Input schema
    {
      "type": "object",
      "properties": {
        "view": {
          "oneOf": [
            {
              "type": "string",
              "enum": [
                "consolidated"
              ]
            },
            {
              "type": "string",
              "enum": [
                "exAnte"
              ]
            },
            {
              "type": "string",
              "enum": [
                "realTime"
              ]
            }
          ]
        }
      },
      "additionalProperties": false
    }
  • getWindSolar

    read

    Wind & solar generation forecast vs actual.

    Input schema
    {
      "type": "object",
      "properties": {
        "series": {
          "type": "string"
        }
      },
      "additionalProperties": false
    }
  • getInterchange

    read

    Net actual / net scheduled interchange (NAI/NSI).

    Input schema
    {
      "type": "object",
      "properties": {
        "type": {
          "type": "string"
        }
      },
      "additionalProperties": false
    }
  • getGenerationOutages

    read

    Generation outages, +/- 5 days.

    Input schema
    {
      "type": "object",
      "properties": {},
      "additionalProperties": false
    }
  • getBindingConstraints

    read

    Real-time / sub-regional / reserve binding transmission constraints.

    Input schema
    {
      "type": "object",
      "properties": {
        "type": {
          "type": "string"
        }
      },
      "additionalProperties": false
    }
  • getInterconnectionQueue

    read

    Generator interconnection queue (~3,800 projects); filter by state/fuelType/status.

    Input schema
    {
      "type": "object",
      "properties": {
        "state": {
          "type": "string"
        },
        "fuelType": {
          "type": "string"
        },
        "status": {
          "type": "string"
        },
        "limit": {
          "type": "number"
        }
      },
      "additionalProperties": false
    }
  • getServiceInfo

    read

    Method options and endpoint notes.

    Input schema
    {
      "type": "object",
      "properties": {},
      "additionalProperties": false
    }