Skip to content
EN | DE

Get charging plan

GET
/loadpoints/{id}/plan
curl --request GET \
--url https://demo.evcc.io/api/loadpoints/1/plan

Returns the current charging plan for this loadpoint.

More information

id
required

Loadpoint index starting at 1.

integer
>= 1
Example
1

Loadpoint index starting at 1

Success

Media type application/json
object
result
object
planId

Loadpoint index starting at 1.

integer
>= 1
duration

Duration in s

integer
plan
Array<object>

A charging interval

object
start

Start

string format: date-time
end

End

string format: date-time
value

Cost

number
planTime

Timestamp in RFC3339 format

string format: date-time
power

Power in W

number
Example
{
"result": {
"planId": 1,
"plan": [
{
"start": "2025-07-19T12:30:00.000Z",
"end": "2025-07-19T12:30:00.000Z"
}
],
"planTime": "2025-07-19T12:30:00.000Z",
"power": 2500
}
}