Product
Jentic OSThe workplace. An in-house AI platform for every employeeJentic OneSafe access. Agents reach your systems without holding keysJentic AIRThe foundation. Gets your existing platforms ready for AI
Pricing
Developers

GET STARTED

API DirectoryBrowse 10,000+ APIs Ready For AI Agent IntegrationDocumentationGuides and API reference

TOOLS

API ScoringCheck your AI Readiness using our scorecardArazzo UIVisualize Arazzo Workflows As Interactive DocumentationArazzo EditorBuild And Edit Multi-Step API Workflows Visually

COMMUNITY

GitHubOpen source projects and examplesOpen StandardsBuilt on open specs. Never locked in.
Resources
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Try it now
Jentic OSJentic OneJentic AIR
Pricing
API DirectoryDocumentationAPI ScoringArazzo UIArazzo EditorGitHubOpen Standards
Resources
About UsCareersContact
Try it now
JenticJentic
Products
  • Jentic OS
  • Jentic One
  • Jentic AIR
For Developers
  • API Directory
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
  • Trust Centre
ISO/IEC 27001:2022 certification badge issued by Prescient SecurityISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic Technology Ltd. All rights reserved.
Switch to light modeSwitch to dark mode
APIs / IOT / Enode API
Enode API logo

Enode API

Community OpenAPI document · agent-readyIOTDevice Managementoauth228 EndpointsREST

Know of an official OpenAPI document? Contribute it →

For Agents

Read live data from connected EVs and chargers and send charging commands across vehicle and hardware brands through a single OAuth API.

Use for: List all chargers linked to a specific Enode user, Get the current status of a charger by its identifier, I need to start a charging session on a user's home charger, Retrieve charging statistics for a fleet over the last 30 days

Not supported: Does not handle home appliances, grid-scale energy markets, or vehicle purchase data - use for connected EV, charger, and charging-location management only.

Enode is a connectivity platform that abstracts the differences between electric vehicle, charger, and energy hardware brands so applications can read live data and send commands through one consistent API. The Enode API provides OAuth-based access to vehicles, chargers, charging locations, statistics, and webhooks, letting smart-charging and home-energy apps avoid building per-vendor integrations. The spec exposes 28 endpoints covering charging control, location management, fleet-wide statistics, and user authorisation lifecycle.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Enode API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Enode API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.

Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.

1

Step 1: Jentic One Host machine

# On the machine that will host your Jentic One instance:
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fenode.io%2Fenode" | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fenode.io%2Fenode" | sh
jentic register       # connects your agent to your Jentic One instance

Jentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.

Capabilities

What an agent can do with Enode API.

List a user's linked chargers and read live status for a specific charger

Start or stop a charging session on a connected charger by ID

Create, update, and delete charging locations that group home or fleet chargers

Read vehicle telemetry and charging history from linked electric vehicles

Subscribe to webhooks so the app reacts to charging, vendor, and link events in real time

Pull aggregate charging statistics for analytics and reporting dashboards

Revoke a user's vendor authorization to disconnect their hardware from the application

Use Cases

Patterns agents use Enode API for, with concrete tasks.

★ Smart Home Energy Charging App

Build a consumer smart-charging app that links a user's EV and home charger across brands and schedules charging based on tariffs or solar production. The Enode API provides a unified surface across vehicle and charger manufacturers, removing the need to integrate Tesla, BMW, Easee, Wallbox, and others individually. A typical home-charging integration takes a few days end-to-end with Enode versus weeks per vendor.

List the user's chargers via GET /chargers, then call POST /chargers/{chargerId}/charging to start a session at the cheapest tariff window.

EV Fleet Monitoring

A fleet operator pulls aggregate charging statistics from GET /statistics/charging and reads per-vehicle telemetry to optimise duty cycles and forecast electricity costs. Webhooks deliver live charging-state changes so dashboards stay current without polling. Pairs naturally with finance and reporting tools.

Call GET /statistics/charging with a 30-day window and return total energy delivered and average session length per vehicle.

User Onboarding and Vendor Linking

When a consumer links their hardware, the app uses Enode's OAuth user authorization flow to obtain a user access token, then calls GET /me to confirm the link and DELETE /me/vendors/{vendor} when the user wants to disconnect a brand. This mirrors a standard OAuth lifecycle and removes per-vendor SSO work.

After a user completes OAuth, call GET /me to confirm the link and surface their connected vendors in the app UI.

AI Agent Charging Assistant Through Jentic

An AI assistant uses Jentic to discover Enode operations by intent and orchestrates charging across a user's vehicles and chargers. The Enode OAuth tokens are kept in your Jentic One instance. The agent can answer questions like 'is my car charging?' or 'start charging now' by chaining list, read, and command endpoints without bespoke wiring.

Search Jentic for 'start charging on my home charger', load POST /chargers/{chargerId}/charging, and execute it for the user's primary charger.

Key Endpoints

28 endpoints — enode is a connectivity platform that abstracts the differences between electric vehicle, charger, and energy hardware brands so applications can read live data and send commands through one consistent api.

METHOD

PATH

DESCRIPTION

GET

/chargers

List chargers linked to the user

GET

/chargers/{chargerId}

Get a charger's current state

POST

/chargers/{chargerId}/charging

Start or stop a charging session

GET

/charging-locations

List charging locations

POST

/charging-locations

Create a charging location

GET

/statistics/charging

Aggregate charging statistics

GET

/me

Inspect the authenticated user and linked vendors

GET

/health/vendors

Check upstream vendor integration health

GET

/chargers

List chargers linked to the user

GET

/chargers/{chargerId}

Get a charger's current state

POST

/chargers/{chargerId}/charging

Start or stop a charging session

GET

/charging-locations

List charging locations

POST

/charging-locations

Create a charging location

GET

/statistics/charging

Aggregate charging statistics

GET

/me

Inspect the authenticated user and linked vendors

GET

/health/vendors

Check upstream vendor integration health

Why Jentic?

What agents get from Jentic-routed access to this vendor.

Setup

Setup

Wiring Enode by hand means running its OAuth2 flows for both client-credentials and user access tokens, refreshing those tokens, and pointing at the correct link and api host. Through Jentic you install once, import the Enode API from the API Directory, store the OAuth credentials once, and your agent calls it.

Permission scoping

Permission scoping

Enode puts the charger id in the URL path (/chargers/{chargerId}/charging), so a rule can pin your agent to one charger: it can read state and start or stop charging for that charger and nothing else. You choose the operations it may call, so account-level deletes like removing a user or unlinking a vehicle vendor are not included unless you add them.

Credential management

Credential isolation

Your Enode client credentials and user access tokens are stored once, encrypted, by your own Jentic One instance and injected at execution time. They never enter the agent's prompt, logs, or context.

Intent-based discovery

Intent-based discovery

Agents search Jentic by intent such as 'start charging on a connected charger' or 'get charging statistics', and Jentic returns the matching Enode operation with its input schema so the agent calls the right endpoint without browsing the reference docs.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Alternative

Smartcar

→

Vehicle-focused unified API for connected cars

Choose Smartcar when the focus is the vehicle itself (location, lock, fuel) without charging hardware. Use Enode when chargers and home energy are part of the integration.

Alternative

Tesla Fleet API

→

First-party Tesla vehicle and charger API

Pick Tesla Fleet API for Tesla-only fleets needing first-party data. Stick with Enode when supporting multiple vehicle and charger brands through a single integration.

Complementary

OpenWeatherMap

→

Forecast solar and weather conditions to inform charging schedules

Use OpenWeatherMap to optimise Enode charging windows for solar production or off-peak tariffs.

FAQs

Specific to using Enode API through Jentic.

What authentication does the Enode API use?

The Enode API uses OAuth 2.0. A client access token (client credentials grant) covers administrative actions, and a user access token obtained via the authorization code flow covers per-user resources such as chargers and vehicles. Through Jentic, both token types are stored in your Jentic One instance and never enter the agent context.

Can I start a charging session through the Enode API?

Yes. Call POST /chargers/{chargerId}/charging with the desired action to start or stop a session on a linked charger. The endpoint abstracts vendor differences across Tesla, BMW, Easee, Wallbox, and other supported brands.

How do webhooks work with the Enode API?

The spec exposes a Webhooks tag with subscription endpoints so your application receives real-time events for charging state changes and vendor link lifecycle. This avoids polling /chargers or /me on a schedule.

What are the rate limits for the Enode API?

The OpenAPI spec does not publish numeric rate limits. The 429 Too Many Requests status is documented and Enode applies plan-based throttling - contact Enode if you need higher sustained throughput.

How do I read a user's chargers through Jentic?

Search Jentic for 'list chargers for an Enode user', load the GET /chargers operation, and execute it with the user access token. Get started with Jentic One, the self-hosted execution layer.

Does Enode work in production or just test environments?

The OpenAPI base URL is the test environment (https://api.test.enode.io/). Enode issues production credentials and a production base URL on request - contact Enode to move from test to production.

Can I limit what my agent is allowed to do with the Enode API?

Yes. Because you run Jentic One yourself, your own rules decide which Enode operations and which stored OAuth credentials the agent may use. Since Enode carries the charger id in the URL path, you can pin the agent to a single charger so it may only read its state and start or stop charging on that charger, for example through GET /chargers/{chargerId} and POST /chargers/{chargerId}/charging. Account-level operations such as removing a user or unlinking a vehicle vendor stay out of reach unless you explicitly grant them.

GET STARTED

Start building with Enode API

Explore with Jentic One
View OpenAPI Document