GnistAI GnistAI
Log in

Vehicle Specifications

Car specifications database — engine, horsepower, MPG, drivetrain, pricing for popular models.

Overview   |   MCP   |   REST API   |   OpenAPI   |   CLI   |   Tutorial   |   Toolkits   |   Home
status: healthy status status healthy healthy tools: 7 tools tools 7 7 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/vehicle-specs/
Authentication

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

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

Tools (7)

get_vehicle

Get detailed specifications for a vehicle.

Returns make, model, year, engine, horsepower, MPG, drivetrain, transmission, and MSRP.

ParameterTypeRequiredDescription
vehicle_idstringrequiredVehicle ID slug (e.g. toyota-camry-2024, ford-f150-2024).
Request Body
{
  "vehicle_id": "example"
}
search_vehicles

Search the vehicle specifications database.

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

List vehicles by manufacturer.

ParameterTypeRequiredDescription
makestringrequiredManufacturer name (e.g. Toyota, Ford, BMW).
limitintegeroptional (default: 50)
Request Body
{
  "make": "example"
}
list_vehicles_by_body_style

List vehicles by body style.

ParameterTypeRequiredDescription
body_stylestringrequiredBody style (e.g. Sedan, SUV, Truck, Coupe).
limitintegeroptional (default: 50)
Request Body
{
  "body_style": "example"
}
get_vehicle_makes

List all vehicle makes in the database.

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

List all body styles 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/vehicle-specs/get_vehicle" \
  -H "Content-Type: application/json" \
  -H "Gnist-API-Key: YOUR_API_KEY" \
  -d '{"vehicle_id": "example"}'
Python
import httpx

resp = httpx.post(
    "https://context.gnist.ai/rest/vehicle-specs/get_vehicle",
    headers={"Gnist-API-Key": "YOUR_API_KEY"},
    json={
  "vehicle_id": "example"
},
)
print(resp.json())

Related Toolkits (Automotive)

Resources