Auto.dev

API Products

Unified API gateway with consistent response structure and service discovery

The Auto.dev API Gateway at https://api.auto.dev provides a unified entry point to all automotive data services. Every endpoint returns a consistent response structure that includes navigation, service discovery, and user context.

Standard Response Structure

Every API endpoint returns four standard objects along with endpoint-specific data:

  • api - Metadata about the current service
  • links - Navigation and self-reference links
  • discover - Available services and endpoints by category
  • user - Your authentication status and user context

Example Request

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

This returns the complete API structure with available endpoints organized by category (data, services, commerce, AI) and your user context.

Available APIs

Core Vehicle Data

Financial & Ownership

Advanced Features

API Reference

Authentication

Auto.dev API supports three authentication methods:

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

Next Steps

  1. Get your API key if you haven't already
  2. Choose an API above to explore specific endpoints
  3. View examples to see real implementations

Was this API reference helpful?