Enectiva REST API - Librarian
HomeEnectivaUser ManualEnerfis
HomeEnectivaUser ManualEnerfis
  1. Entities from Enectiva
  • Introduction
  • Access tokens
    • Create a new access token
      POST
  • Data points from Enectiva
    • List data points of a data series
      GET
  • Deltas
    • Introduction to Deltas
    • List monthly deltas of an entity
      GET
    • List monthly deltas of a meter
      GET
    • List monthly deltas of a virtual meter
      GET
  • Data points to Enectiva
    • Latest data point
      GET
    • Create a new data point
      POST
    • Delete a data point by ID
      DELETE
    • Delete a data point by time
      DELETE
  • Profiles to Enectiva
    • Latest profile
      GET
    • Create a new/update an existing profile
      POST
    • Delete a profile by ID
      DELETE
    • Delete a profile by time range
      DELETE
  • Readings to Enectiva
    • Latest reading
      GET
    • Create a new reading
      POST
    • Delete a reading by ID
      DELETE
    • Delete a reading by time
      DELETE
  • Entities from Enectiva
    • List entities
      GET
    • Entity
      GET
  • Readings from Enectiva
    • List readings of a meter
      GET
  • Meters from Enectiva
    • List meters
    • Meter
  • Received energy invoices
    • Create a new invoice
  1. Entities from Enectiva

List entities

Developing
GET
https://api.enectiva.cz//entities
Last modified:2025-09-02 06:55:36
This action allows to list entities of a specific customer.
This endpoint is paginated, see Limit & pagination for details. By default, at most 1000 records are returned.
The required scope is entities.

Request

Authorization
OAuth 2.0
Authorization Code
Add the parameter
Authorization
to Headers
,whose value is to concatenate the Token after the Bearer.
Example:
Authorization: Bearer ********************
Authorize URL: https://app.enectiva.cz/en/api/dashboard
Token URL: /access_tokens
or
Header Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.enectiva.cz//entities' \
--header 'Accept: application/vnd.api+json' \
--header 'Authorization: Bearer <token>'

Responses

🟢200OK
application/vnd.api+json
OK
Body

Examples
{
    "data": [
        {
            "id": "3560",
            "attributes": {
                "name": "NAME_1",
                "parent_id": 3564
            },
            "type": "entities"
        },
        {
            "id": "3562",
            "attributes": {
                "name": "NAME_2"
            },
            "type": "entities"
        },
        {
            "id": "14089",
            "attributes": {
                "name": "NAME_3",
                "parent_id": 3562
            },
            "type": "entities"
        }
    ]
}
🟠401Unauthorized
🟠403Forbidden
🟠406Not Acceptable
🟠429Too Many Requests
🔴500Server Error
Modified at 2025-09-02 06:55:36
Previous
Delete a reading by time
Next
Entity
Built with