Get Continuous Forecast

View as Markdown
Retrieve a continuous LMP forecast series for one or more pricing nodes. This endpoint combines forecasts from multiple model runs to create a seamless timeseries. For each day in the requested date range, the endpoint selects the forecast published at `latest_hour` (local time) with a lead time of `days_ahead` days. These individual forecasts are then stitched together into a single continuous timeseries. Note that data is only available from January 1, 2026 onwards. **Access:** Requires `core` subscription level.

Authentication

X-API-Keystring

API key for authentication. Can also be provided in the api_key query parameter.

Path parameters

isoenumRequired
ISO identifier.
typeenumRequired
LMP market type.
Allowed values:

Query parameters

startdatetimeOptional
enddatetimeOptional
idstringOptional
Unique identifier of the specific target. If omitted, returns all available targets for the specified ISO.
modelenumOptionalDefaults to optimized
Model to use for the stitched forecast.
Allowed values:
latest_hourintegerOptional0-23Defaults to 10

The local hour (0–23) to use for selecting the model run each day.

days_aheadintegerOptional1-14Defaults to 1
The forecast horizon in days

Response

Successful Response
modelstring or null

Identifier of the weather model used for this forecast (e.g., ‘optimized’, ‘iso’). Null for historical actuals or composite responses.

created_atdatetime or null

Timestamp (UTC) when this forecast was created/published. Represents the model run time. Null for continuous/stitched forecasts or historical actuals.

unitsstring

Measurement units for all data values in the response. Common values: ‘MW’ (megawatts), ‘°C’ (degrees Celsius), ‘USD/MWh’, ’$/MMBtu’.

timezonestringformat: "zoneinfo"

IANA timezone identifier used for the time_local field. Typically matches the region’s local timezone.

time_utclist of datetimes

Array of timestamps in Coordinated Universal Time (UTC). Each entry corresponds to one row in the values matrix. Always timezone-aware.

time_locallist of datetimes

Array of timestamps in local time (timezone specified in timezone field). Each entry corresponds to one row in the values matrix. Parallel to time_utc.

columnslist of lists of strings

Metadata describing each column in the values matrix. Each entry is a list of one or more level labels — single-level columns are returned as length-1 sublists (e.g. [‘pjm_total’]); naturally multi-level data uses one entry per level (e.g. [‘pjm_total’, ‘demand’]). Clients can rebuild a pandas MultiIndex via pd.MultiIndex.from_tuples(columns).

valueslist of lists of nullable doubles

2D matrix of numeric forecast or actual values in column-major order. Each inner list represents a series (corresponding to columns), and each element within that list corresponds to a timestamp (corresponding to time_utc/time_local). Missing or unavailable data is represented as null.

Errors

422
Unprocessable Entity Error