ClearVIN

ClearVIN is a vehicle-history and VIN data provider and an approved NMVTIS data provider. Its REST API decodes North American (U.S. and Canada) VINs into 100+ specification data points and returns full vehicle history reports - title, junk / salvage / total-loss records, odometer events, and market valuation - sourced directly from government and industry data, covering model years 1981 to present.

4 APIs 0 Features
VINVehicle HistoryAutomotiveNMVTISVehicle Data

APIs

VIN Decode API

Breaks a North American VIN into 100+ data points - year, make, model, trim, engine, technical VIN specs, standard features, and recall data - via ClearVIN's proprietary decoder...

Vehicle History Report API

Full vehicle history report from the NMVTIS government database and industry sources - DMV title records, brand codes, junk / salvage / total-loss events, insurance claims, odom...

Report Preview API

Retrieves a report by VIN with the format query parameter to obtain an HTML rendering or summary view of available data before pulling the full report. Exact preview parameters ...

Account Authentication API

Exchanges account email and password for a JWT bearer token (valid 120 minutes) used to authorize report requests. Requests must originate from a registered IP address. Account ...

Collections

Pricing Plans

Clearvin Plans Pricing

5 plans

PLANS

Rate Limits

Clearvin Rate Limits

4 limits

RATE LIMITS

FinOps

Resources

🔗
LinkedIn
LinkedIn
🔗
Website
Website
🔗
Documentation
Documentation
🔗
Plans
Plans
🔗
RateLimits
RateLimits
🔗
FinOps
FinOps

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: ClearVIN Vendor API
  version: '1.0'
request:
  auth:
    type: bearer
    token: '{{bearerToken}}'
items:
- info:
    name: Authentication
    type: folder
  items:
  - info:
      name: Authenticate and obtain a bearer token.
      type: http
    http:
      method: POST
      url: https://www.clearvin.com/rest/vendor/login
      body:
        type: json
        data: "{\n  \"email\": \"<string>\",\n  \"password\": \"<string>\"\n}"
    docs: Exchanges account email and password for a JWT bearer token valid for 120 minutes. The request must originate from
      an IP address registered with ClearVIN.
- info:
    name: Report
    type: folder
  items:
  - info:
      name: Retrieve a vehicle report by VIN.
      type: http
    http:
      method: GET
      url: https://www.clearvin.com/rest/vendor/report
      params:
      - name: vin
        value: 5UXFA13544LU21050
        type: query
        description: The 17-character Vehicle Identification Number to look up.
      - name: format
        value: html
        type: query
        description: Set to html for an HTML rendering; omit for JSON (default).
    docs: Returns a vehicle report for the supplied VIN. Depending on the account subscription the report contains VIN decode
      specifications, NMVTIS title and history data, and/or market valuation. Requires a valid bearer token from /rest/vendor/login.
bundled: true