<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Jan Ferko</title>
    <description>The latest articles on DEV Community by Jan Ferko (@janferko).</description>
    <link>https://dev.to/janferko</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3537385%2F3d5d3666-51a0-414c-ab9e-1ccebf38d764.png</url>
      <title>DEV Community: Jan Ferko</title>
      <link>https://dev.to/janferko</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/janferko"/>
    <language>en</language>
    <item>
      <title>Building an All-in-One Automotive Data API - Looking for Developer Feedback</title>
      <dc:creator>Jan Ferko</dc:creator>
      <pubDate>Mon, 29 Sep 2025 13:07:05 +0000</pubDate>
      <link>https://dev.to/janferko/building-an-all-in-one-automotive-data-api-looking-for-developer-feedback-3ae8</link>
      <guid>https://dev.to/janferko/building-an-all-in-one-automotive-data-api-looking-for-developer-feedback-3ae8</guid>
      <description>&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F643p4vma2k4agcvtyk4v.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F643p4vma2k4agcvtyk4v.webp" alt=" " width="800" height="420"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Hey dev community! 👋&lt;br&gt;
I've been working on CarAPI.dev - a comprehensive automotive data API platform. We're consolidating what typically requires 10+ different vendors into a single API. I'm at a point where I really need feedback from developers who work with vehicle data.&lt;/p&gt;
&lt;h2&gt;
  
  
  The Problem We're Solving
&lt;/h2&gt;

&lt;p&gt;Last year, I was building an automotive marketplace and ended up juggling a ridiculous number of APIs:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;VIN decoder for specs&lt;/li&gt;
&lt;li&gt;License plate lookup service&lt;/li&gt;
&lt;li&gt;Stolen vehicle database&lt;/li&gt;
&lt;li&gt;European inspection records (MOT/TÜV)&lt;/li&gt;
&lt;li&gt;Vehicle valuation service&lt;/li&gt;
&lt;li&gt;Photo CDN provider&lt;/li&gt;
&lt;li&gt;Payment calculator API&lt;/li&gt;
&lt;li&gt;Mileage verification service&lt;/li&gt;
&lt;li&gt;Multiple listing aggregators&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Each had different auth methods, response formats, rate limits, and pricing models. I was spending more time managing integrations than building features.&lt;/p&gt;
&lt;h2&gt;
  
  
  What CarAPI.dev Offers
&lt;/h2&gt;

&lt;p&gt;We've consolidated everything into a single API:&lt;br&gt;
&lt;strong&gt;Vehicle Identification &amp;amp; Specs&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;VIN Decode - Full specifications, history, technical details&lt;/li&gt;
&lt;li&gt;Plate to VIN - Convert any license plate to VIN&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Verification &amp;amp; Safety&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Stolen Vehicle Check - Real-time database lookups&lt;/li&gt;
&lt;li&gt;Vehicle Inspection - European MOT, TÜV, TK/EK records&lt;/li&gt;
&lt;li&gt;Mileage History - Odometer tracking for fraud detection&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Market Data &amp;amp; Commerce&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Vehicle Listings - Aggregated inventory with pricing&lt;/li&gt;
&lt;li&gt;Vehicle Valuation - Market values and depreciation analysis&lt;/li&gt;
&lt;li&gt;Vehicle Payments - Financing calculators and estimates&lt;/li&gt;
&lt;li&gt;Vehicle Photos - High-quality image galleries&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;One API key, consistent JSON responses, single invoice.&lt;/p&gt;
&lt;h2&gt;
  
  
  Technical Decisions I Need Feedback On
&lt;/h2&gt;
&lt;h3&gt;
  
  
  1. Authentication - Query Parameter vs Headers
&lt;/h3&gt;

&lt;p&gt;We use API key as a query parameter:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;GET https://api.carapi.dev/v1/vin/decode?vin&lt;span class="o"&gt;=&lt;/span&gt;1HGBH41JXMN109186&amp;amp;token&lt;span class="o"&gt;=&lt;/span&gt;YOUR_API_KEY
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;GET https://api.carapi.dev/v1/plate/lookup?plate&lt;span class="o"&gt;=&lt;/span&gt;ABC123&amp;amp;region&lt;span class="o"&gt;=&lt;/span&gt;CA&amp;amp;token&lt;span class="o"&gt;=&lt;/span&gt;YOUR_API_KEY
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;GET https://api.carapi.dev/v1/vehicle/stolen-check?vin&lt;span class="o"&gt;=&lt;/span&gt;...&amp;amp;token&lt;span class="o"&gt;=&lt;/span&gt;YOUR_API_KEY
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Controversial, I know. But my reasoning:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Works directly in browser for testing&lt;/li&gt;
&lt;li&gt;No header configuration needed&lt;/li&gt;
&lt;li&gt;Simpler for non-technical users&lt;/li&gt;
&lt;li&gt;Easy to share examples&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Is this a deal-breaker for you? Should we support header auth too?&lt;/strong&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  2. The "Everything API" Approach
&lt;/h3&gt;

&lt;p&gt;We're offering A LOT through one API. The alternative would be specialized APIs for each domain. Current structure:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;/v1/vin/decode
/v1/plate/lookup
/v1/vehicle/stolen-check
/v1/vehicle/inspection
/v1/vehicle/mileage-history
/v1/listings/search
/v1/vehicle/valuation
/v1/vehicle/payments/calculate
/v1/vehicle/photos
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Is this too much in one API? Would you prefer:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Everything under one roof (current)&lt;/li&gt;
&lt;li&gt;Separate APIs for different domains&lt;/li&gt;
&lt;li&gt;GraphQL to query only what you need&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  3. Response Bundling vs Separation
&lt;/h3&gt;

&lt;p&gt;When you decode a VIN, should we return EVERYTHING we have?&lt;br&gt;
&lt;strong&gt;Option A - Kitchen sink approach:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="err"&gt;GET&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="err"&gt;/v&lt;/span&gt;&lt;span class="mi"&gt;1&lt;/span&gt;&lt;span class="err"&gt;/vin/decode?vin=...&amp;amp;token=KEY&lt;/span&gt;&lt;span class="w"&gt;

&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"specs"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="err"&gt;...&lt;/span&gt;&lt;span class="p"&gt;},&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"stolen_status"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="err"&gt;...&lt;/span&gt;&lt;span class="p"&gt;},&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"inspection_history"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="err"&gt;...&lt;/span&gt;&lt;span class="p"&gt;],&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"mileage_records"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="err"&gt;...&lt;/span&gt;&lt;span class="p"&gt;],&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"valuation"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="err"&gt;...&lt;/span&gt;&lt;span class="p"&gt;},&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"photos"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="err"&gt;...&lt;/span&gt;&lt;span class="p"&gt;],&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"listings"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="err"&gt;...&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Option B - Selective with params:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;GET /v1/vin/decode?vin=...&amp;amp;include=specs,stolen,valuation&amp;amp;token=KEY
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Option C - Separate endpoints for everything:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;GET /v1/vin/decode?vin=...&amp;amp;token=KEY  // Just specs
GET /v1/vehicle/stolen-check?vin=...&amp;amp;token=KEY
GET /v1/vehicle/valuation?vin=...&amp;amp;token=KEY
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;What's the right balance between convenience and payload size?&lt;/p&gt;

&lt;h3&gt;
  
  
  4. Regional Data Complexity
&lt;/h3&gt;

&lt;p&gt;We handle multiple regions with different data:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;US/Canada: VIN, state/province inspections&lt;/li&gt;
&lt;li&gt;Europe: MOT (UK), TÜV (Germany), TK/EK (Netherlands), etc.&lt;/li&gt;
&lt;li&gt;Different inspection standards per country&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;How should we handle this?&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Auto-detect&lt;/span&gt;
GET /v1/vehicle/inspection?vin&lt;span class="o"&gt;=&lt;/span&gt;...&amp;amp;token&lt;span class="o"&gt;=&lt;/span&gt;KEY
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Explicit country&lt;/span&gt;
GET /v1/vehicle/inspection?vin&lt;span class="o"&gt;=&lt;/span&gt;...&amp;amp;country&lt;span class="o"&gt;=&lt;/span&gt;DE&amp;amp;token&lt;span class="o"&gt;=&lt;/span&gt;KEY
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Country-specific endpoints&lt;/span&gt;
GET /v1/de/vehicle/inspection?vin&lt;span class="o"&gt;=&lt;/span&gt;...&amp;amp;token&lt;span class="o"&gt;=&lt;/span&gt;KEY
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  5. Documentation Approach
&lt;/h3&gt;

&lt;p&gt;We have custom docs at &lt;a href="https://docs.carapi.dev/" rel="noopener noreferrer"&gt;https://docs.carapi.dev/&lt;/a&gt; but wondering if we should add:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Swagger/OpenAPI - Industry standard, interactive&lt;/li&gt;
&lt;li&gt;Postman Collection - Ready to run&lt;/li&gt;
&lt;li&gt;GraphQL Playground - If we add GraphQL&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The playground is behind login (for security). Is this friction worth it or should we have public test endpoints?&lt;/p&gt;

&lt;h3&gt;
  
  
  6. Pricing Across Diverse Features
&lt;/h3&gt;

&lt;p&gt;Different features have vastly different costs for us:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;VIN decode: Cheap (mostly static data)&lt;/li&gt;
&lt;li&gt;Stolen check: Moderate (database queries)&lt;/li&gt;
&lt;li&gt;Photos: Expensive (bandwidth)&lt;/li&gt;
&lt;li&gt;Valuations: Very expensive (complex calculations)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Should we:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Single price for everything (simple but unfair?)&lt;/li&gt;
&lt;li&gt;Feature-based pricing (complex but fair?)&lt;/li&gt;
&lt;li&gt;Credit system (1 VIN decode = 1 credit, 1 valuation = 5 credits?)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Current thinking:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Free: 100 requests/month (any endpoint)&lt;/li&gt;
&lt;li&gt;Indie: $29/mo for 5,000 requests&lt;/li&gt;
&lt;li&gt;Startup: $99/mo for 25,000 requests&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Scale: $299/mo for 100,000 requests&lt;/p&gt;
&lt;h3&gt;
  
  
  7. Real-time vs Cached Data
&lt;/h3&gt;

&lt;p&gt;Different data has different freshness requirements:&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;&lt;p&gt;VIN specs: Never change (cache forever)&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Stolen status: Changes daily&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Valuations: Monthly updates&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Listings: Real-time&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Mileage: When reported (sporadic)&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;How should we communicate this?&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"data"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="err"&gt;...&lt;/span&gt;&lt;span class="p"&gt;},&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"meta"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"cached"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="kc"&gt;true&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"cached_at"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"2024-01-15T10:00:00Z"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"data_freshness"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"real-time|daily|weekly|static"&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Or just use HTTP cache headers and trust developers to understand?&lt;/p&gt;

&lt;h3&gt;
  
  
  8. Bulk Operations for Fleet/Dealer Tools
&lt;/h3&gt;

&lt;p&gt;Many users need bulk operations:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;POST /v1/bulk/vin-decode?token&lt;span class="o"&gt;=&lt;/span&gt;KEY
&lt;span class="o"&gt;{&lt;/span&gt;
  &lt;span class="s2"&gt;"vins"&lt;/span&gt;: &lt;span class="o"&gt;[&lt;/span&gt;&lt;span class="s2"&gt;"VIN1"&lt;/span&gt;, &lt;span class="s2"&gt;"VIN2"&lt;/span&gt;, ...],
  &lt;span class="s2"&gt;"include"&lt;/span&gt;: &lt;span class="o"&gt;[&lt;/span&gt;&lt;span class="s2"&gt;"specs"&lt;/span&gt;, &lt;span class="s2"&gt;"valuation"&lt;/span&gt;, &lt;span class="s2"&gt;"stolen"&lt;/span&gt;&lt;span class="o"&gt;]&lt;/span&gt;
&lt;span class="o"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Questions:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Sync limit: 100 VINs reasonable?&lt;/li&gt;
&lt;li&gt;Should bulk be cheaper per-request?&lt;/li&gt;
&lt;li&gt;Async with webhooks or polling for large batches?&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  The Big Architecture Questions
&lt;/h2&gt;

&lt;h3&gt;
  
  
  1. Monolithic API vs Microservices
&lt;/h3&gt;

&lt;p&gt;We're currently one big API. Should we split into:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;identity.carapi.dev (VIN decode, plate lookup)
verification.carapi.dev (stolen, inspection, mileage)
market.carapi.dev (listings, valuation, payments)
media.carapi.dev (photos)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Or is one API endpoint actually better DX?&lt;/p&gt;

&lt;h3&gt;
  
  
  2. API-First, No SDKs
&lt;/h3&gt;

&lt;p&gt;We don't offer SDKs. Just REST. Is this refreshing or frustrating?&lt;br&gt;
You write:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;response&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="k"&gt;await&lt;/span&gt; &lt;span class="nf"&gt;fetch&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;
  &lt;span class="s2"&gt;`https://api.carapi.dev/v1/vin/decode?vin=&lt;/span&gt;&lt;span class="p"&gt;${&lt;/span&gt;&lt;span class="nx"&gt;vin&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="s2"&gt;&amp;amp;token=&lt;/span&gt;&lt;span class="p"&gt;${&lt;/span&gt;&lt;span class="nx"&gt;API_KEY&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="s2"&gt;`&lt;/span&gt;
&lt;span class="p"&gt;);&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Instead of:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;vehicle&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="k"&gt;await&lt;/span&gt; &lt;span class="nx"&gt;carapi&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;decode&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;vin&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  3. Payment Calculator Complexity
&lt;/h3&gt;

&lt;p&gt;Should payment calculations be:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Simple&lt;/span&gt;
GET /v1/vehicle/payments/calculate?price&lt;span class="o"&gt;=&lt;/span&gt;50000&amp;amp;down&lt;span class="o"&gt;=&lt;/span&gt;5000&amp;amp;term&lt;span class="o"&gt;=&lt;/span&gt;60&amp;amp;apr&lt;span class="o"&gt;=&lt;/span&gt;4.5&amp;amp;token&lt;span class="o"&gt;=&lt;/span&gt;KEY
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Or complex with regional tax/fee support&lt;/span&gt;
POST /v1/vehicle/payments/calculate?token&lt;span class="o"&gt;=&lt;/span&gt;KEY
&lt;span class="o"&gt;{&lt;/span&gt;
  &lt;span class="s2"&gt;"vehicle_price"&lt;/span&gt;: 50000,
  &lt;span class="s2"&gt;"down_payment"&lt;/span&gt;: 5000,
  &lt;span class="s2"&gt;"trade_in"&lt;/span&gt;: 10000,
  &lt;span class="s2"&gt;"location"&lt;/span&gt;: &lt;span class="o"&gt;{&lt;/span&gt;&lt;span class="s2"&gt;"state"&lt;/span&gt;: &lt;span class="s2"&gt;"CA"&lt;/span&gt;, &lt;span class="s2"&gt;"zip"&lt;/span&gt;: &lt;span class="s2"&gt;"94105"&lt;/span&gt;&lt;span class="o"&gt;}&lt;/span&gt;,
  &lt;span class="s2"&gt;"financing"&lt;/span&gt;: &lt;span class="o"&gt;{&lt;/span&gt;
    &lt;span class="s2"&gt;"term_months"&lt;/span&gt;: 60,
    &lt;span class="s2"&gt;"apr"&lt;/span&gt;: 4.5
  &lt;span class="o"&gt;}&lt;/span&gt;,
  &lt;span class="s2"&gt;"include_taxes"&lt;/span&gt;: &lt;span class="nb"&gt;true&lt;/span&gt;,
  &lt;span class="s2"&gt;"include_fees"&lt;/span&gt;: &lt;span class="nb"&gt;true&lt;/span&gt;
&lt;span class="o"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Specific Feature Questions
&lt;/h2&gt;

&lt;h3&gt;
  
  
  1. Vehicle Photos
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Should we proxy/cache images or return direct CDN URLs?&lt;/li&gt;
&lt;li&gt;Standardized sizes or original only?&lt;/li&gt;
&lt;li&gt;Watermarking options?&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  2. Mileage History
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;How many historical points are useful?&lt;/li&gt;
&lt;li&gt;Should we flag suspicious patterns automatically?&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  3. European Inspections
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Is mixing MOT/TÜV/TK in one response confusing?&lt;/li&gt;
&lt;li&gt;Should we standardize the format across countries?&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  4. Plate to VIN
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Should this fail gracefully or error if no match?&lt;/li&gt;
&lt;li&gt;Return multiple possible matches or best guess only?&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  What We Need From You
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;What vehicle data are you currently struggling to get?&lt;/li&gt;
&lt;li&gt;Which of our features would you actually pay for?&lt;/li&gt;
&lt;li&gt;Is one unified API better or worse than specialized ones?&lt;/li&gt;
&lt;li&gt;What's missing that would make you switch from current providers?&lt;/li&gt;
&lt;li&gt;Is API key in URL params a deal-breaker?&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Beta Access
&lt;/h2&gt;

&lt;p&gt;Looking for ~50 developers who will actually integrate:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;6 months free access to ALL endpoints&lt;/li&gt;
&lt;li&gt;Direct Slack channel with the team&lt;/li&gt;
&lt;li&gt;Help shape the API design&lt;/li&gt;
&lt;li&gt;Early access to new features&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;We need brutal honesty. "This endpoint is useless" or "This response format sucks" is exactly what we need to hear.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why Another Vehicle API?
&lt;/h2&gt;

&lt;p&gt;Beyond consolidation, we believe:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;One vendor &amp;gt; ten vendors&lt;/li&gt;
&lt;li&gt;Consistent data formats &amp;gt; different schemas per provider&lt;/li&gt;
&lt;li&gt;Single invoice &amp;gt; expense report hell&lt;/li&gt;
&lt;li&gt;Actual support &amp;gt; black holes&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;But maybe you prefer best-in-class point solutions?&lt;br&gt;
&lt;strong&gt;The core question: Is an all-in-one vehicle data API solving a real problem, or are we trying to do too much?&lt;/strong&gt;&lt;br&gt;
Drop a comment or DM. Happy to discuss specific use cases, share example responses, or debate whether we're crazy for putting API keys in URLs.&lt;br&gt;
Thanks for reading! 🚗&lt;/p&gt;

</description>
      <category>api</category>
      <category>webdev</category>
      <category>discuss</category>
      <category>sideprojects</category>
    </item>
  </channel>
</rss>
