Find an API

Search public APIs with auth details & Postman guides

← All APIs

Enode API

enode · Location

Location No Auth Free & Open location

Download [OpenAPI 3.0 Specification](/OpenAPI-Enode-v1.4.0.json) Download [Postman Collection](/Postman-Enode-v1.4.0.json) The Enode API is designed to make smart charging applications easy to develop. We provide an abstraction layer that reduces the complexity when extracting vehicle data and sending commands to vehicles from a variety of manufacturers. The API has a RESTful architecture and utilizes OAuth2 authorization. We are always available to handle any issues or just answer your ques

Authentication

No authentication requiredFree to use with no key needed.

Sample Requests

GET List Chargers

List Chargers

https://api.apis.guru/v2/specs/enode.io/1.3.10/chargers?field[]=example

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/enode.io/1.3.10/chargers?field[]=example"
import requests
params = {
    "field[]": "example"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/enode.io/1.3.10/chargers",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/enode.io/1.3.10/chargers');
url.searchParams.set('field[]', 'example');

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
	"net/url"
)

func main() {
	baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/enode.io/1.3.10/chargers")
	q := baseURL.Query()
	q.Set("field[]", "example")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("GET", targetURL, nil)

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/enode.io/1.3.10/chargers")
uri.query = URI.encode_www_form({
  "field[]" => "example"
})

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Get.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/enode.io/1.3.10/chargers?" . http_build_query([
    "field[]" => "example"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET List Vehicles

List Vehicles

https://api.apis.guru/v2/specs/enode.io/1.3.10/vehicles?field[]=example

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/enode.io/1.3.10/vehicles?field[]=example"
import requests
params = {
    "field[]": "example"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/enode.io/1.3.10/vehicles",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/enode.io/1.3.10/vehicles');
url.searchParams.set('field[]', 'example');

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
	"net/url"
)

func main() {
	baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/enode.io/1.3.10/vehicles")
	q := baseURL.Query()
	q.Set("field[]", "example")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("GET", targetURL, nil)

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/enode.io/1.3.10/vehicles")
uri.query = URI.encode_www_form({
  "field[]" => "example"
})

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Get.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/enode.io/1.3.10/vehicles?" . http_build_query([
    "field[]" => "example"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET Get User Charging Statistics

Returns a normalized timeseries of statistics about power consumption and price for the User.

https://api.apis.guru/v2/specs/enode.io/1.3.10/statistics/charging?endDate=example&startDate=example&vehicleId=example&resolution=DAY&chargingLocationId=example

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/enode.io/1.3.10/statistics/charging?endDate=example&startDate=example&vehicleId=example&resolution=DAY&chargingLocationId=example"
import requests
params = {
    "endDate": "example",
    "startDate": "example",
    "vehicleId": "example",
    "resolution": "DAY",
    "chargingLocationId": "example"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/enode.io/1.3.10/statistics/charging",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/enode.io/1.3.10/statistics/charging');
url.searchParams.set('endDate', 'example');
url.searchParams.set('startDate', 'example');
url.searchParams.set('vehicleId', 'example');
url.searchParams.set('resolution', 'DAY');
url.searchParams.set('chargingLocationId', 'example');

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
	"net/url"
)

func main() {
	baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/enode.io/1.3.10/statistics/charging")
	q := baseURL.Query()
	q.Set("endDate", "example")
	q.Set("startDate", "example")
	q.Set("vehicleId", "example")
	q.Set("resolution", "DAY")
	q.Set("chargingLocationId", "example")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("GET", targetURL, nil)

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/enode.io/1.3.10/statistics/charging")
uri.query = URI.encode_www_form({
  "endDate" => "example",
  "startDate" => "example",
  "vehicleId" => "example",
  "resolution" => "DAY",
  "chargingLocationId" => "example"
})

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Get.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/enode.io/1.3.10/statistics/charging?" . http_build_query([
    "endDate" => "example",
    "startDate" => "example",
    "vehicleId" => "example",
    "resolution" => "DAY",
    "chargingLocationId" => "example"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));

Postman Setup Guide

Get Postman ↗
  1. See official documentation for authentication and setup.

What can you build with Enode API?

Enode API is a Location API. Developers commonly use location APIs for:

  • tracking assets and vehicles in real time
  • building delivery and logistics apps
  • finding nearby businesses or services
  • geo-fencing and location-based notifications
  • address validation and autocomplete

No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. Enode API is free to use, making it a low-risk choice to experiment with.

New to APIs? Read our beginner's guide · Learn about API keys · What is REST?

Open documentation ↗