Skip to main content

Hourly Integrated LMP

UPDATED Thursday July 15, 10:08 PM PST

HTTP Request
GET https://wprice.io/api/v1/present/marketinfo/hourlyIntegratedLMP

This endpoint returns real-time market (RTM) locatonal marginal prices (LMP) integrated over hourly intervals.

Requires an API Key

This feature is only available to WattPricer Account-holders.

Query Parameters#

ParameterDescriptionExamples
zone_keyA string representing the zone identifier. We use a combination of ISO 3166-1 alpha-2 country codes, ISO 3166-2 country subdivision code, and where applicable, ISO 639-1 language codes for our locale codes. See the /zones endpoint for a list of valid zones.US-MISO
node_keyString containing node abbreviations. See the /nodes endpoint for a list of valid nodes. If multiple nodes, separate them by commas in the stringALTE.COLUMBAL1,ALTW.BRLGTN5,WPS.WESTON4
as_csv (OPTIONAL)Boolean indicating whether to return the data in CSV format.true

Code samples#

cURL command
@ECHO OFF
curl -v -X GET "https://wprice.io/api/v1/present/marketinfo/hourlyIntegratedLMP?zone_key={string}&node_key={string}&as_csv={boolean}"-H "x-api-key: {subscription key}"
--data-ascii "{body}"

Successful Response Samples#

HTTP 200 OK#

The above commands yield data such as the following (using zone_key=US-MISO and node_key=ALTW.BRLGTN5,WPS.WESTON4):

response for media types 'application/json' and 'text/json'
{    "billingUnit": "MWh",    "currency": "USD",    "datetime": "2021-04-20T07:20:00+00:00",    "node": {        "ALTW.BRLGTN5": {"MCC": 0.0,                        "MLC": -0.61,                        "LMP": 21.3},        "WPS.WESTON4": {"MCC": 0.0,                        "MLC": 1.19,                        "LMP": 23.04}    },    "source": "misoenergy.org",    "updated": "2021-04-20T09:20:33+00:00",    "zoneKey": "US-MISO"}

Error Response Samples#

(Click to expand ๐Ÿ‘‡ )