<?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: Simon wakelin</title>
    <description>The latest articles on DEV Community by Simon wakelin (@simon_wakelin_86f3160e079).</description>
    <link>https://dev.to/simon_wakelin_86f3160e079</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%2F3886430%2F8b78dbd1-0ec9-42d0-ab7a-594284e90feb.jpg</url>
      <title>DEV Community: Simon wakelin</title>
      <link>https://dev.to/simon_wakelin_86f3160e079</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/simon_wakelin_86f3160e079"/>
    <language>en</language>
    <item>
      <title>I Built a Free Vehicle Specs API Because Every Other Option Sucked</title>
      <dc:creator>Simon wakelin</dc:creator>
      <pubDate>Sat, 18 Apr 2026 18:36:35 +0000</pubDate>
      <link>https://dev.to/simon_wakelin_86f3160e079/i-built-a-free-vehicle-specs-api-because-every-other-option-sucked-30c7</link>
      <guid>https://dev.to/simon_wakelin_86f3160e079/i-built-a-free-vehicle-specs-api-because-every-other-option-sucked-30c7</guid>
      <description>&lt;p&gt;I needed vehicle data for a project. Towing capacity, tire sizes, bolt patterns. Simple stuff...&lt;/p&gt;

&lt;p&gt;What did I find? Paywalls ($450/year for bolt patterns alone?), incomplete datasets, or government APIs missing half the fields I needed.&lt;/p&gt;

&lt;p&gt;So I built my own.&lt;/p&gt;

&lt;h2&gt;
  
  
  What is 411 API?
&lt;/h2&gt;

&lt;p&gt;A free vehicle specifications API with 65,000+ records across 5 categories:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Towing capacity&lt;/strong&gt; (4,072 vehicles)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Tire sizes&lt;/strong&gt; (6,237 vehicles)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Bolt patterns&lt;/strong&gt; (4,714 vehicles)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Oil capacity&lt;/strong&gt; (33,931 vehicles)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Horsepower &amp;amp; MPG&lt;/strong&gt; (16,269 vehicles)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;All queryable by make, model, and year. ~200ms response times from Cloudflare's edge.&lt;/p&gt;

&lt;h2&gt;
  
  
  Quick Example
&lt;/h2&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="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;https://411-api.simonwakelin.workers.dev/v1/towing?make=Ford&amp;amp;model=F-150&amp;amp;year=2024&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="na"&gt;headers&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;X-Api-Key&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;demo-411-free-key&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt; &lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="p"&gt;}&lt;/span&gt;
&lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;data&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;response&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;json&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;
&lt;span class="c1"&gt;// { make: "Ford", model: "F-150", year: 2024, max_towing_lbs: 14000, ... }&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Free Tier
&lt;/h2&gt;

&lt;p&gt;100 requests/day with the demo key. No credit card. No signup.&lt;/p&gt;

&lt;p&gt;For higher volume, it's on &lt;a href="https://rapidapi.com/simonwakelin-5v24dnYuE/api/411-vehicle-data" rel="noopener noreferrer"&gt;RapidAPI&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why I Built This
&lt;/h2&gt;

&lt;p&gt;I run a network of automotive spec sites (TowCapacity411, TireSize411, etc.) and needed clean, structured data. The existing options were either too expensive for side projects, missing critical fields, or required enterprise contracts.&lt;/p&gt;

&lt;p&gt;Now I'm opening it up. If you're building anything automotive related, this might save you weeks of data collection.&lt;/p&gt;

&lt;h2&gt;
  
  
  Links
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;API Docs&lt;/strong&gt;: &lt;a href="https://411-api.simonwakelin.workers.dev" rel="noopener noreferrer"&gt;https://411-api.simonwakelin.workers.dev&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;RapidAPI&lt;/strong&gt;: &lt;a href="https://rapidapi.com/simonwakelin-5v24dnYuE/api/411-vehicle-data" rel="noopener noreferrer"&gt;https://rapidapi.com/simonwakelin-5v24dnYuE/api/411-vehicle-data&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Landing Page&lt;/strong&gt;: &lt;a href="https://411-api-landing.pages.dev" rel="noopener noreferrer"&gt;https://411-api-landing.pages.dev&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Happy to answer questions or take feature requests.&lt;/p&gt;

</description>
      <category>api</category>
      <category>opensource</category>
      <category>webdev</category>
      <category>javascript</category>
    </item>
  </channel>
</rss>
