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 per month
  • Growth: $299/month with unlimited calls (14-day free trial)
  • Scale: $599/month with enterprise features (14-day free trial)
Try Growth or Scale free for 14 days 🎉

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. Auto.dev API supports three authentication methods - choose the one that best fits your use case:

Method 1: View in Browser

For web applications with user sessions, you can use a clickable link to view the API call in your browser:

https://api.auto.dev/vin/WP0AF2A99KS165242

Method 2: Query Parameter

curl "https://api.auto.dev/vin/WP0AF2A99KS165242?apiKey=YOUR_API_KEY"
curl -H "Authorization: Bearer YOUR_API_KEY" \
  https://api.auto.dev/vin/WP0AF2A99KS165242

Security Best Practices: - Use Authorization header for server-to-server communication - Use query parameters only for testing or simple integrations - View in browser for web applications with user sessions - Never expose API keys in client-side code

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:

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.