<?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: sergei-argutin</title>
    <description>The latest articles on DEV Community by sergei-argutin (@sergeiargutin).</description>
    <link>https://dev.to/sergeiargutin</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4008328%2F954551e1-e045-4210-9b17-157f6d1fffc5.png</url>
      <title>DEV Community: sergei-argutin</title>
      <link>https://dev.to/sergeiargutin</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sergeiargutin"/>
    <language>en</language>
    <item>
      <title>Free exercise data for your fitness app (JSON + images, EN/DE/ES)</title>
      <dc:creator>sergei-argutin</dc:creator>
      <pubDate>Mon, 29 Jun 2026 14:43:40 +0000</pubDate>
      <link>https://dev.to/sergeiargutin/free-exercise-data-for-your-fitness-app-json-images-endees-5d9f</link>
      <guid>https://dev.to/sergeiargutin/free-exercise-data-for-your-fitness-app-json-images-endees-5d9f</guid>
      <description>

&lt;p&gt;For all vibecoders in here! If you've ever started building a fitness app, you hit the same wall I did: &lt;em&gt;where do I get the exercise data?&lt;/em&gt; Names, target muscles, equipment, instructions, and — the hard part — consistent images.&lt;/p&gt;

&lt;p&gt;I ended up building a curated dataset for this, and I've put a free slice of it on GitHub so you can drop it straight into a prototype.&lt;/p&gt;

&lt;h2&gt;
  
  
  What's in it
&lt;/h2&gt;

&lt;p&gt;A free, ready-to-use sample — &lt;strong&gt;21 exercises&lt;/strong&gt;, each with:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Two image styles&lt;/strong&gt;: &lt;code&gt;classic&lt;/code&gt; (3D-render look on a &lt;strong&gt;transparent&lt;/strong&gt; background, drops onto any UI) and &lt;code&gt;flat&lt;/code&gt; (solid background). Start + peak pose for each.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Target muscles, equipment, MET, difficulty, force type, mechanic, tags&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Step-by-step instructions in English, German, and Spanish.&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;Delivered as plain &lt;strong&gt;JSON + CSV + WebP&lt;/strong&gt; — no API, no key, no rate limit.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;🔗 &lt;strong&gt;Repo:&lt;/strong&gt; &lt;a href="https://github.com/sergei-argutin/exercise-dataset" rel="noopener noreferrer"&gt;https://github.com/sergei-argutin/exercise-dataset&lt;/a&gt;&lt;br&gt;
🔍 &lt;strong&gt;Browse it:&lt;/strong&gt; &lt;a href="https://sergei-argutin.github.io/exercise-dataset/" rel="noopener noreferrer"&gt;https://sergei-argutin.github.io/exercise-dataset/&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Use it in 5 lines
&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;data&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="s2"&gt;https://raw.githubusercontent.com/sergei-argutin/exercise-dataset/main/exercises.json&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;
&lt;span class="p"&gt;).&lt;/span&gt;&lt;span class="nf"&gt;then&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;r&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="nx"&gt;r&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="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;ex&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nx"&gt;data&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;exercises&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="mi"&gt;0&lt;/span&gt;&lt;span class="p"&gt;];&lt;/span&gt;
&lt;span class="nx"&gt;console&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;log&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;ex&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;name_en&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;ex&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;body_part&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;ex&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;equipment&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;   &lt;span class="c1"&gt;// "Arnold Press" chest dumbbell&lt;/span&gt;
&lt;span class="nx"&gt;console&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;log&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;ex&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;images&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;classic&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;peak&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;                   &lt;span class="c1"&gt;// images/classic/arnold-press-peak.webp&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="kn"&gt;import&lt;/span&gt; &lt;span class="n"&gt;json&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;urllib&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;request&lt;/span&gt;
&lt;span class="n"&gt;url&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;https://raw.githubusercontent.com/sergei-argutin/exercise-dataset/main/exercises.json&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;
&lt;span class="n"&gt;data&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;json&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;load&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;urllib&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;request&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;urlopen&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;url&lt;/span&gt;&lt;span class="p"&gt;))&lt;/span&gt;
&lt;span class="k"&gt;for&lt;/span&gt; &lt;span class="n"&gt;ex&lt;/span&gt; &lt;span class="ow"&gt;in&lt;/span&gt; &lt;span class="n"&gt;data&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;exercises&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;]:&lt;/span&gt;
    &lt;span class="nf"&gt;print&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;ex&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;id&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;],&lt;/span&gt; &lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;→&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;ex&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;primary_muscles&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;])&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  One thing worth checking before you ship: the license
&lt;/h2&gt;

&lt;p&gt;This is the part most people skip. A few popular exercise datasets are genuinely public domain (e.g. &lt;a href="https://github.com/yuhonas/free-exercise-db" rel="noopener noreferrer"&gt;free-exercise-db&lt;/a&gt;) and you can ship them commercially with a clear conscience. But two traps catch teams:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Commercial APIs with a free tier&lt;/strong&gt; often restrict &lt;em&gt;redistributing/bundling&lt;/em&gt; the data offline — exactly what you do in an app. Read the ToS for "redistribute" and "cache".&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Scraped datasets&lt;/strong&gt; can be "free" while the &lt;strong&gt;images inside&lt;/strong&gt; were never licensed. The data being free ≠ the images being cleared.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;So: verify the &lt;em&gt;image&lt;/em&gt; license specifically, not just the dataset's. I wrote up the full breakdown here → &lt;a href="https://repdb.co/blog/exercise-dataset-commercial-use/" rel="noopener noreferrer"&gt;Can you use a free exercise dataset commercially?&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Disclosure
&lt;/h2&gt;

&lt;p&gt;I'm the creator. The dataset above is a &lt;strong&gt;free 21-exercise sample&lt;/strong&gt; under CC BY-NC 4.0 — use it for prototyping and non-commercial projects. There's also a full &lt;strong&gt;400+ exercise&lt;/strong&gt; version with a commercial license at &lt;a href="https://repdb.co" rel="noopener noreferrer"&gt;repdb.co&lt;/a&gt; if you end up shipping something that earns money. Either way, the licensing checklist above applies — hopefully it saves you a headache.&lt;/p&gt;

&lt;p&gt;Happy building 💪&lt;/p&gt;

</description>
      <category>data</category>
      <category>webdev</category>
      <category>fitness</category>
      <category>opensource</category>
    </item>
  </channel>
</rss>
