Product

How Jentic Works

From API assessment to production deployment in four simple steps.

Product Overview

PLATFORM

Jentic OneSelf-hosted, open-source control plane between your agents and any APIAPI DirectoryBrowse 10,000+ APIs ready for AI agent integrationAPI ScorecardAssess your APIs for AI-readiness with automated scoringAgentic SandboxSafely simulate AI agents with your production APIsJenticSign in to the Jentic web app

CAPABILITIES

IntegrationConnect AI agents to your existing systemsWorkflowsDiscover and capture successful agent workflowsGovernanceDefine, observe, and enforce AI policies

TOOLS

Arazzo UIVisualize Arazzo workflows as interactive documentationArazzo EditorBuild and edit multi-step API workflows visually
Pricing
Developers

GET STARTED

DocumentationGuides and API referenceQuickstartGet up and running in minutes

COMMUNITY

GitHubOpen source projects and examples
Resources
BlogLatest articles and insightsPress & MediaBrand assets and press contactOpen StandardsBuilt on open specs. Never locked in.NewsletterAPIs, AI agents, mixed with architecture and strategy.
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Install Jentic OneBook a Demo
How Jentic WorksJentic OneAPI DirectoryAPI ScorecardAgentic SandboxJenticIntegrationWorkflowsGovernanceArazzo UIArazzo Editor
Pricing
DocumentationQuickstartGitHub
BlogPress & MediaOpen StandardsNewsletter
About UsCareersContact
Request a demoInstall Jentic One
Jentic
For Enterprises
  • Product Overview
  • Agentic Sandbox
  • Book a Demo
For Developers
  • Jentic One
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
ISO/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. All rights reserved.
APIs / IOT / Enode API
Enode API logo

Enode API

★ Only Publicly Available OpenAPI DocumentIOTDevice Managementoauth228 EndpointsREST

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.

GET STARTED

Start building with Enode API

Explore with Jentic
View OpenAPI Document