All data sources

PJM Data Miner

API keypjm

PJM Data Miner wholesale power market datasets — real-time and day-ahead LMPs, load, generation, and capacity markets across the 13-state PJM footprint.

Provenance

PublisherPJM Data Miner

Freshness & coverage

FreshnessFreshness not declared
GeographicNot declared
TemporalNot declared
AuthenticationCredentials required (API key)

Methods (3)

  • listDatasets

    read

    List PJM Data Miner datasets (LMP, load, generation feeds).

    Input schema
    {
      "type": "object",
      "properties": {
        "endpoint": {
          "type": "string"
        },
        "query": {
          "type": "object",
          "properties": {},
          "additionalProperties": true
        },
        "page": {
          "type": "number"
        },
        "rowCount": {
          "type": "number"
        }
      },
      "additionalProperties": false
    }
  • queryDataMiner

    read

    Query rows from a PJM Data Miner dataset with filters.

    Input schema
    {
      "type": "object",
      "properties": {
        "dataset": {
          "type": "string"
        },
        "endpoint": {
          "type": "string"
        },
        "query": {
          "type": "object",
          "properties": {},
          "additionalProperties": true
        },
        "method": {
          "oneOf": [
            {
              "type": "string",
              "enum": [
                "POST"
              ]
            },
            {
              "type": "string",
              "enum": [
                "GET"
              ]
            }
          ]
        },
        "body": {}
      },
      "additionalProperties": false
    }
  • getDatasetById

    read

    Get a PJM Data Miner dataset metadata and columns by id.

    Input schema
    {
      "type": "object",
      "properties": {
        "dataset": {
          "type": "string"
        },
        "endpoint": {
          "type": "string"
        },
        "query": {
          "type": "object",
          "properties": {},
          "additionalProperties": true
        }
      },
      "additionalProperties": false
    }