Skip to main content
GET
/
partner
/
v1
/
day-ahead-prices
/
forecast
Forecasted Day-Ahead Market prices
curl --request GET \
  --url https://api.rabot-charge.de/partner/v1/day-ahead-prices/forecast \
  --header 'Authorization: Bearer <token>'
{
  "isSuccess": true,
  "message": null,
  "error": [
    {
      "severity": "Error",
      "code": "validation-failed",
      "message": "First name is required for non-business customers.",
      "details": null
    }
  ],
  "refUri": "<string>",
  "data": {
    "pricesUnit": {
      "main": "None",
      "per": "None"
    },
    "pricesKind": "Gross",
    "from": "2023-11-07T05:31:56Z",
    "to": "2023-11-07T05:31:56Z",
    "prices": [
      {
        "at": "2023-11-07T05:31:56Z",
        "price": 123
      }
    ]
  }
}
Returns energy prices based on day-ahead spot market (EPEX) forecast, with D+1 to D+8 maximum interval. All dates are considered in the German time zone.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

from
string<date-time>

Beginning date of the interval, assumed current date + 24 hours, if not provided

to
string<date-time>

End date of the interval, assumed from date + 48 hours, if not provided

granularity
enum<string>
default:QuarterHourly

Granularity of returned price points Granularities for price points.

Available options:
Hourly,
QuarterHourly

Response

200 - application/json

OK

API response DTO with data.

isSuccess
boolean

Success status of the operation based on status code (2xx range).

Example:

true

message
string | null

Optional message to provide additional information about the operation result.

Example:

null

error
object[] | null

Optional error details in case of an error(s).

refUri
string<uri> | null

Optional reference URI to point to the resulting resource.

data
object

Returned data instance.