Skip to main content

API for Developers

VIN-level automotive intelligence via REST API. Price history, recall data, dealer behavior scores, and market signals.

What Is the OTDCheck API?

The OTDCheck API is a RESTful automotive data service that gives developers programmatic access to VIN-level market intelligence. Every response is structured JSON, so you can drop it straight into your app, dashboard, or data pipeline without parsing HTML or scraping third-party sites. The API covers four core data domains: price history (how a listing's asking price has changed over time), recall status (open NHTSA recalls cross-referenced by VIN), dealer behavior scoring (days-on-lot patterns, price-drop frequency, and negotiation tendencies), and market pulse signals (aggregate trends across makes, models, and regions).

If you have ever tried to answer the question “Is this car priced fairly?” at scale, you know how fragmented automotive data can be. Listings appear and vanish from marketplaces daily, recall databases are maintained by a separate federal agency, and dealer behavior is almost never quantified. OTDCheck consolidates those signals behind a single API key. You can look up a single VIN with our VIN lookup tool on the web, or call the same endpoint programmatically to enrich thousands of records in a batch job.

The API is built on the same dataset that powers our consumer-facing tools, including the recall checker and dealer scorecard. Check out our guide on how to use VIN price history to negotiate a better deal for a practical walkthrough.

Who Uses the API?

Developers & Startups

Car-shopping apps, browser extensions, and Slack bots that surface price alerts and recall notifications.

Auto Dealers

Bulk VIN enrichment to benchmark inventory against the broader market and spot overpriced units.

Insurance Companies

Recall status and price history to refine underwriting models and automate total-loss valuations.

Hedge Funds

Market pulse endpoint to track macro trends in used-vehicle supply, pricing velocity, and demand shifts.

Auto Lenders

Verify collateral values at origination and monitor portfolio-level depreciation curves.

Anyone Else

Free-tier users can prototype and validate an integration in minutes. Paid plans scale to millions of requests.

Endpoints

api.otdcheck.com
1GET/api/v1/vin/{vin}
2GET/api/v1/vin/{vin}/recalls
3GET/api/v1/vin/{vin}/history
4GET/api/v1/dealer/{id}
5GET/api/v1/search
6GET/api/v1/market/pulse

Quick Start

1$ curl -X GET "https://api.otdcheck.com/v1/vin/1HGCV1F34PA123456" \
2 -H "Authorization: Bearer sk_live_..." \
3 -H "Content-Type: application/json"
Response — 200 OK
1{
2 "vin": "1HGCV1F34PA123456",
3 "fair_price": {
4 "low": 22400,
5 "mid": 24100,
6 "high": 25800
7 },
8 "recalls": [{
9 "nhtsa_id": "24V-108",
10 "component": "Fuel System",
11 "severity": "HIGH"
12 }],
13 "days_on_lot": 34,
14 "dealer_score": "B+"
15}

Pricing

Start free. Scale when you need to.

Auto API

Automotive market intelligence
Free
$0
100 calls/mo
  • VIN lookup
  • Recall checks
  • Basic price data
  • No credit card
ProPOPULAR
$49/mo
25,000 calls/mo
  • Full price history
  • Dealer scores
  • Market analytics
  • Bulk VIN checks
  • Email support
Enterprise
$199/mo
100,000 calls/mo
  • Everything in Pro
  • Bulk data feeds
  • Alt data signals
  • Priority support + SLA
  • Onboarding call

Marine API

Boat & marine market intelligence
Free
$0
100 calls/mo
  • Boat search
  • Marine listings
  • Basic pricing
  • No credit card
ProPOPULAR
$69/mo
15,000 calls/mo
  • Full boat listings
  • Marine dealer data
  • Pricing intelligence
  • Email support
Enterprise
$249/mo
75,000 calls/mo
  • Everything in Pro
  • Bulk marine feeds
  • Seasonal analytics
  • Priority support + SLA
  • Onboarding call

Auto + Marine Bundle

Both APIs — save up to $49/moSAVE
Pro BundlePOPULAR
$99/mo
25K auto + 15K marine
  • Full auto API access
  • Full marine API access
  • Save $19/mo vs separate
  • Email support
Enterprise Bundle
$399/mo
100K auto + 75K marine
  • Both Enterprise APIs
  • Save $49/mo vs separate
  • Priority support + SLA
  • Quarterly data review

Get Your API Key

Start with 100 free calls/month. No credit card required.

Frequently Asked Questions