Auto.dev

Getting Started

Get up and running with Auto.dev APIs in minutes

Getting Started with Auto.dev

This guide will walk you through setting up your account, getting your API key, and making your first API call.

Sign Up for Your Account

Visit auto.dev to sign up or log in. Choose your plan:

  • Starter: Free with 1,000 API calls included
  • Growth: $299/month with unlimited calls
  • Scale: $599/month with enterprise features

Complete the Stripe checkout process (even for the free plan, we need a card on file) and verify your email address.

Get Your API Key

Once your account is set up:

  1. Log into your Auto.dev dashboard
  2. Navigate to API Keys in the sidebar
  3. Click Create New Key
  4. Copy your API key and store it securely
Keep your API key secure! Never expose it in client-side code or public repositories.

Make Your First API Call

Test your setup by decoding a VIN. All requests require your API key in the Authorization header:

curl -X GET "https://api.auto.dev/specs/1HGBH41JXMN109186" \
  -H "Authorization: Bearer YOUR_API_KEY"

You'll get back comprehensive vehicle data including specifications, available services, and your user context.

Explore and Build

Now that you're set up, explore our APIs:

Authentication

All Auto.dev API requests require authentication using your API key:

Authorization: Bearer YOUR_API_KEY

Rate Limits

Your plan includes these rate limits:

  • Starter: 5 requests per second
  • Growth: 10 requests per second
  • Scale: 50 requests per second

Need Help?

Visit your dashboard to monitor usage or contact for support.

For troubleshooting API errors, see our Error Codes Reference.