All data sources

CAISO OASIS

No authcaiso

CAISO OASIS California ISO market and operational reports — LMPs, load, renewable generation, and curtailments across the California grid.

Provenance

PublisherCAISO OASIS

Freshness & coverage

FreshnessFreshness not declared
GeographicNot declared
TemporalNot declared
AuthenticationNo credentials required

Methods (3)

  • queryOasis

    read

    Query a CAISO OASIS report by queryname and params.

    Required paramsqueryname
    Input schema
    {
      "type": "object",
      "properties": {
        "endpoint": {
          "type": "string"
        },
        "queryname": {
          "type": "string"
        },
        "query": {
          "type": "object",
          "properties": {},
          "additionalProperties": true
        },
        "method": {
          "oneOf": [
            {
              "type": "string",
              "enum": [
                "POST"
              ]
            },
            {
              "type": "string",
              "enum": [
                "GET"
              ]
            }
          ]
        },
        "body": {},
        "expectBinary": {
          "type": "boolean"
        }
      },
      "additionalProperties": false,
      "required": [
        "queryname"
      ]
    }
  • listReports

    read

    List the supported CAISO OASIS reports.

    Input schema
    {
      "type": "object",
      "properties": {},
      "additionalProperties": true
    }
  • getLmpData

    read

    Get CAISO locational marginal prices (LMPs).

    Input schema
    {
      "type": "object",
      "properties": {
        "node": {
          "type": "string"
        },
        "marketRunId": {
          "type": "string"
        },
        "startdatetime": {
          "type": "string"
        },
        "enddatetime": {
          "type": "string"
        },
        "resultformat": {
          "oneOf": [
            {
              "type": "number",
              "enum": [
                1
              ]
            },
            {
              "type": "number",
              "enum": [
                6
              ]
            }
          ]
        },
        "version": {
          "type": "number"
        },
        "query": {
          "type": "object",
          "properties": {},
          "additionalProperties": true
        },
        "expectBinary": {
          "type": "boolean"
        }
      },
      "additionalProperties": false
    }