Profiles
Predefined energy consumption profiles (household types, business categories). Provide baseline consumption patterns for solar analysis. See Accuracy — Load Profile Accuracy.
GET/v1/profiles
List all profiles
Endpoint for GET /v1/profiles.
Response
Request
GET
/v1/profilescurl -G https://api.enhub.nl/v1/profiles \
-H "Authorization: Bearer {token}"
Response
[
{
"id": "cm5k2l3m4000008l8a1b2c3d4",
"type": "residential",
"description": "Gemiddeld huishoudelijk verbruik zonder warmtepomp"
}
]
GET/v1/profiles/:id
Get profile by ID
Endpoint for GET /v1/profiles/{id}.
Path parameters
- Name
id- Type
- string
- Description
No description available.
Response
Request
GET
/v1/profiles/:idcurl -G https://api.enhub.nl/v1/profiles/{id} \
-H "Authorization: Bearer {token}"
Response
{
"id": "cm5k2l3m4000008l8a1b2c3d4",
"type": "residential",
"description": "Gemiddeld huishoudelijk verbruik zonder warmtepomp",
"profileFile": {
"load": [
0.5,
0.4,
0.3
],
"pv": [
0,
0,
0
]
},
"createdAt": "2026-01-30T12:00:00.000Z",
"updatedAt": "2026-01-30T12:00:00.000Z"
}