Data source: Curated dataset (industry sources)
https://context.gnist.ai/rest/ev-charging/
AuthenticationAll 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_networksearch_charging_networkslist_networks_by_countryget_connector_typelist_connector_typesget_charging_levellist_charging_levelsreport_feedback
get_charging_networkGet detailed information about an EV charging network.
Returns name, country coverage, connector types, pricing model, station count, and description.
| Parameter | Type | Required | Description |
|---|---|---|---|
network_id | string | required | Network ID slug (e.g. tesla-supercharger, chargepoint, ionity). |
{
"network_id": "example"
}search_charging_networksSearch the EV charging network database.
| Parameter | Type | Required | Description |
|---|---|---|---|
query | string | required | Search by network name or description. |
limit | integer | optional | (default: 20) |
{
"query": "example"
}list_networks_by_countryList EV charging networks operating in a specific country.
| Parameter | Type | Required | Description |
|---|---|---|---|
country | string | required | Country name (e.g. United States, Germany, Norway). |
limit | integer | optional | (default: 50) |
{
"country": "NO"
}get_connector_typeGet detailed information about an EV charging connector type.
Returns standard, max power, voltage range, current type, regions, and description.
| Parameter | Type | Required | Description |
|---|---|---|---|
connector_id | string | required | Connector ID slug (e.g. ccs1, ccs2, chademo, type-2, nacs). |
{
"connector_id": "example"
}list_connector_typesList EV charging connector types, optionally filtered by current type.
| Parameter | Type | Required | Description |
|---|---|---|---|
current_type | any | optional | Filter by current type: AC or DC. |
{
"query": "example"
}get_charging_levelGet detailed information about an EV charging level.
Returns power range, typical charge time, use case, compatible connectors, and description.
| Parameter | Type | Required | Description |
|---|---|---|---|
level_id | string | required | Level ID slug (e.g. level-1, level-2, dc-fast). |
{
"level_id": "example"
}list_charging_levelsList all EV charging levels (Level 1, Level 2, DC Fast Charging).
{
"query": "example"
}report_feedbackReport 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'.
| Parameter | Type | Required | Description |
|---|---|---|---|
feedback | string | required | |
feedback_type | string | optional | (default: "general") |
{
"feedback": "example"
}Quick Start
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"}'
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())