🚗 Automotive AI API v1

Build smarter
auto experiences

AI-powered VIN decode, recall alerts, OBD diagnostics, vehicle health scoring, and fair price intelligence — one API, every automotive need.

Get API Key View Docs →
GET
/api/v1/vin/{vin}
Decode any 17-character VIN via NHTSA — year, make, model, trim, engine, and more.
All plans
GET
/api/v1/recalls/{vin}
Fetch all NHTSA safety recalls associated with a VIN in real time.
All plans
POST
/api/v1/recalls/enrich
AI-enriched recall analysis — plain-English severity ratings, safety impact, and recommended owner actions.
Pro & Business
POST
/api/v1/obd-codes
AI analysis of OBD-II codes with severity, likely causes, repair actions, and cost estimates.
Pro & Business
POST
/api/v1/price-estimate
Fair price range for any auto service category, optionally scoped by ZIP code.
All plans
POST
/api/v1/vehicle/health
AI vehicle health score (0–100) with positive and negative factors and a plain-English summary.
Pro & Business
POST
/api/v1/vehicle/forecast
Upcoming maintenance forecast with due dates, mileage thresholds, priority, and cost estimates.
All plans

Get started in minutes
Subscribe to an AI API plan, generate your key, and make your first call.
Subscribe to an AI API plan
Visit Account → Billing and subscribe to AI Starter, Pro, or Business.
Generate an API key
Head to the API Keys section below and click "Generate Key". Save it — it's shown only once.
Send your first request
Pass your key as a Bearer token or x-api-key header on any /api/v1/* endpoint.
Explore the full reference
Try every endpoint interactively at developers/docs (powered by Swagger UI).
SHELL
# VIN decode
curl -H "Authorization: Bearer mcc_live_your_key_here" \
  https://mycarconcierge.com/api/v1/vin/1HGCM82633A123456

# OBD-II analysis (Pro+)
curl -X POST \
  -H "Authorization: Bearer mcc_live_your_key_here" \
  -H "Content-Type: application/json" \
  -d '{"codes":["P0420","P0171"],"vehicle":{"year":2020,"make":"Toyota","model":"Camry"}}' \
  https://mycarconcierge.com/api/v1/obd-codes
JAVASCRIPT
const MCC_KEY = 'mcc_live_your_key_here';
const BASE = 'https://mycarconcierge.com/api/v1';
const headers = { 'Authorization': `Bearer ${MCC_KEY}` };

// VIN decode
const vin = await fetch(`${BASE}/vin/1HGCM82633A123456`, { headers })
  .then(r => r.json());

// Vehicle health (Pro+)
const health = await fetch(`${BASE}/vehicle/health`, {
  method: 'POST', headers: { ...headers, 'Content-Type': 'application/json' },
  body: JSON.stringify({ year: 2020, make: 'Toyota', model: 'Camry', mileage: 45000 })
}).then(r => r.json());

console.log(health.score); // e.g. 82
PYTHON
import requests

MCC_KEY = "mcc_live_your_key_here"
BASE = "https://mycarconcierge.com/api/v1"
HDR = {"Authorization": f"Bearer {MCC_KEY}"}

# Recall lookup
r = requests.get(f"{BASE}/recalls/1HGCM82633A123456", headers=HDR)
recalls = r.json()["recalls"]

# Maintenance forecast
r = requests.post(f"{BASE}/vehicle/forecast", headers=HDR, json={
    "year": 2020, "make": "Toyota",
    "model": "Camry", "mileage": 45000
})
for item in r.json()["forecast"]:
    print(item["service"], item["due_date"])

Simple, transparent pricing
All plans include full API access with NHTSA data. Upgrade for AI-powered endpoints and higher call limits.
AI Starter
$49/mo
5,000 calls / month
  • VIN decoder
  • NHTSA recall lookup
  • Price estimator
  • Maintenance forecast
  • Basic rate limiting
AI Business
$499/mo
Unlimited calls
  • Everything in Pro
  • Unlimited API calls
  • Custom model fine-tuning
  • Dedicated infrastructure
  • 99.9% SLA
  • White-glove onboarding

API Keys
Generate and manage your API keys. Each key inherits the call limit from your current plan.
🔑
Sign in to manage your keys
Your API keys are tied to your MCC account and billing plan.
Sign In or Create Account