GnistAI GnistAI
Log in

Electric Vehicle Data

Electric vehicle database — range, battery, charging speed, performance for current EV models.

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 (EPA, manufacturer specs)

REST Bridge Endpoint https://context.gnist.ai/rest/ev-data/
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_ev

Get detailed specifications for an electric vehicle.

Returns range, battery capacity, charging specs, performance, and pricing.

ParameterTypeRequiredDescription
ev_idstringrequiredEV ID slug (e.g. tesla-model3-2024, bmw-i4-2024).
Request Body
{
  "ev_id": "example"
}
search_evs

Search the electric vehicle database.

ParameterTypeRequiredDescription
querystringrequiredSearch by make, model, or features.
limitintegeroptional (default: 20)
Request Body
{
  "query": "example"
}
list_evs_by_make

List electric vehicles by manufacturer.

ParameterTypeRequiredDescription
makestringrequiredManufacturer (e.g. Tesla, BMW, Hyundai).
limitintegeroptional (default: 50)
Request Body
{
  "make": "example"
}
list_evs_by_segment

List electric vehicles by market segment.

ParameterTypeRequiredDescription
segmentstringrequiredMarket segment (Economy, Mid-range, Premium, Luxury, Performance).
limitintegeroptional (default: 50)
Request Body
{
  "segment": "example"
}
list_evs_by_range

List EVs by range, sorted from highest to lowest.

ParameterTypeRequiredDescription
min_range_kmintegeroptional (default: 0)
limitintegeroptional (default: 20)
Request Body
{
  "query": "example"
}
get_ev_makes

List all EV manufacturers in the database.

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

List all market segments in the database.

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-data/get_ev" \
  -H "Content-Type: application/json" \
  -H "Gnist-API-Key: YOUR_API_KEY" \
  -d '{"ev_id": "example"}'
Python
import httpx

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

Related Toolkits (Automotive)

Resources