Developers

The MrVIN API

One authenticated endpoint buys a vehicle report. Read it back free for 30 days. Everything you need to integrate is on these pages, and every example is a request you can paste into a terminal.

Start with the quickstart

Reference

Six pages. If you read one before going to production, make it the life of a report: it is the difference between paying once per vehicle and paying every time.

The whole thing in one request

This is the entire product surface. A VIN goes in, a report comes back, and the id you get lets you read it again without paying twice.

curl -X POST https://api.mrvin.com/v1/reports \
  -H "Authorization: Bearer mrvin_live_your_key_here" \
  -H "Content-Type: application/json" \
  -d '{"vin": "WVWZZZ1JZ3W386752"}'

Worth knowing before you start

  • Buying is a POST, reading is a GET. Nothing that retries can spend your money by accident.
  • Reading a report back is free for 30 days, however many times you do it. Polling while slow sections finish costs nothing.
  • Failed calls are never billed. A bad VIN, a rate limit, an outage on our side: none of them cost you.
  • Ignore fields you do not recognise. We add data to reports without changing the version, so a strict client will break on a routine release.
  • Accounts are set up by hand. Pricing, charge window and limits are agreed with you rather than picked from a plan table.

Where things stand

The API description at api.mrvin.com/v1/openapi is generated from the running service, so it always matches what is deployed. Access is granted per account and onboarding is manual, so the fastest route in is to tell us what you are building.