GnistAI GnistAI
Log in

EV Charging

EV charging networks, connector types, and charging levels reference data.

Overview   |   MCP   |   REST API   |   OpenAPI   |   CLI   |   Tutorial   |   Toolkits   |   Home
status: healthy status status healthy healthy tools: 8 tools tools 8 8 type: open dataset type type open dataset open dataset lifecycle: maintained lifecycle lifecycle maintained maintained Automotive

Data source: Curated dataset (industry sources)

REST Bridge Endpoint https://context.gnist.ai/rest/ev-charging/
Authentication

All requests require a Gnist-API-Key header (or api_key query parameter).

Free tier: 100 calls/day. Get your API key.

Tools (8)

get_charging_network

Get detailed information about an EV charging network.

Returns name, country coverage, connector types, pricing model, station count, and description.

ParameterTypeRequiredDescription
network_idstringrequiredNetwork ID slug (e.g. tesla-supercharger, chargepoint, ionity).
Request Body
{
  "network_id": "example"
}
search_charging_networks

Search the EV charging network database.

ParameterTypeRequiredDescription
querystringrequiredSearch by network name or description.
limitintegeroptional (default: 20)
Request Body
{
  "query": "example"
}
list_networks_by_country

List EV charging networks operating in a specific country.

ParameterTypeRequiredDescription
countrystringrequiredCountry name (e.g. United States, Germany, Norway).
limitintegeroptional (default: 50)
Request Body
{
  "country": "NO"
}
get_connector_type

Get detailed information about an EV charging connector type.

Returns standard, max power, voltage range, current type, regions, and description.

ParameterTypeRequiredDescription
connector_idstringrequiredConnector ID slug (e.g. ccs1, ccs2, chademo, type-2, nacs).
Request Body
{
  "connector_id": "example"
}
list_connector_types

List EV charging connector types, optionally filtered by current type.

ParameterTypeRequiredDescription
current_typeanyoptionalFilter by current type: AC or DC.
Request Body
{
  "query": "example"
}
get_charging_level

Get detailed information about an EV charging level.

Returns power range, typical charge time, use case, compatible connectors, and description.

ParameterTypeRequiredDescription
level_idstringrequiredLevel ID slug (e.g. level-1, level-2, dc-fast).
Request Body
{
  "level_id": "example"
}
list_charging_levels

List all EV charging levels (Level 1, Level 2, DC Fast Charging).

Request Body
{
  "query": "example"
}
report_feedback

Report a bug, feature request, or general feedback for this data source.

Use this when something doesn't work as expected, when you'd like
a new feature, or when you have suggestions for improvement.

Args:
feedback: Describe the issue or suggestion.
feedback_type: One of 'bug', 'feature_request', or 'general'.

ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")
Request Body
{
  "feedback": "example"
}

Quick Start

Shell
curl -X POST "https://context.gnist.ai/rest/ev-charging/get_charging_network" \
  -H "Content-Type: application/json" \
  -H "Gnist-API-Key: YOUR_API_KEY" \
  -d '{"network_id": "example"}'
Python
import httpx

resp = httpx.post(
    "https://context.gnist.ai/rest/ev-charging/get_charging_network",
    headers={"Gnist-API-Key": "YOUR_API_KEY"},
    json={
  "network_id": "example"
},
)
print(resp.json())

Related Toolkits (Automotive)

Resources