<?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: Furkan Uruk</title>
    <description>The latest articles on DEV Community by Furkan Uruk (@furkanuruk).</description>
    <link>https://dev.to/furkanuruk</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%2F3881184%2F6d34933b-065f-4cde-aa17-6473fe8abe9d.jpeg</url>
      <title>DEV Community: Furkan Uruk</title>
      <link>https://dev.to/furkanuruk</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/furkanuruk"/>
    <language>en</language>
    <item>
      <title>I Built a Free ExerciseDB Alternative (1,300+ Exercises with GIF Animations)</title>
      <dc:creator>Furkan Uruk</dc:creator>
      <pubDate>Wed, 15 Apr 2026 20:17:17 +0000</pubDate>
      <link>https://dev.to/furkanuruk/i-built-a-free-exercisedb-alternative-1300-exercises-with-gif-animations-5868</link>
      <guid>https://dev.to/furkanuruk/i-built-a-free-exercisedb-alternative-1300-exercises-with-gif-animations-5868</guid>
      <description>&lt;p&gt;A few months ago I was building a fitness app and needed a good exercise API.&lt;/p&gt;

&lt;p&gt;ExerciseDB was the obvious choice — but it routes through RapidAPI, &lt;br&gt;
has unpredictable pricing, and the free tier is basically unusable at 10 req/day.&lt;/p&gt;

&lt;p&gt;So I built my own: &lt;strong&gt;WorkoutX&lt;/strong&gt; — a clean REST API with 1,300+ exercises, &lt;br&gt;
GIF animations, and transparent pricing.&lt;/p&gt;

&lt;p&gt;Here's what it looks like in practice:&lt;/p&gt;

&lt;h2&gt;
  
  
  Get exercises by body part
&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;res&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://api.workoutxapp.com/exercises?bodyPart=chest&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-WorkoutX-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;YOUR_API_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;exercises&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;res&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="nx"&gt;You&lt;/span&gt; &lt;span class="kd"&gt;get&lt;/span&gt; &lt;span class="nx"&gt;back&lt;/span&gt; &lt;span class="nx"&gt;structured&lt;/span&gt; &lt;span class="nx"&gt;JSON&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;br&gt;
json&lt;br&gt;
{&lt;br&gt;
"id": "chest",&lt;br&gt;
"name": "Barbell Bench Press",&lt;br&gt;
"bodyPart": "chest",&lt;br&gt;
"target": "pectorals",&lt;br&gt;
"equipment": "barbell",&lt;br&gt;
"gifUrl": "https://...",&lt;br&gt;
"caloriesBurn": 8,&lt;br&gt;
"difficulty": "intermediate",&lt;br&gt;
"instructions": [...]&lt;br&gt;
}&lt;/p&gt;

&lt;h2&gt;
  
  
  Multi-filter search
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
javascript
// Combine any filters
fetch('/exercises?bodyPart=back&amp;amp;equipment=dumbbell&amp;amp;difficulty=beginner')

## What's included
- 1,300+ exercises with animated GIFs
- Filter by body part, target muscle, equipment, difficulty
- Calorie estimates + recommended sets &amp;amp; reps
- 11 REST endpoints
- ~155ms avg response time
- OpenAPI / Swagger docs
## Pricing
Free plan: 500 req/month — no credit card required.
Paid plans start at $9.99/month for 3,000 req.
Compared to ExerciseDB on RapidAPI:
- No middleware — direct API access
- Transparent, flat pricing
- No surprise rate limit errors
## Try it
🔗 [workoutxapp.com](https://workoutxapp.com) — free API key in 30 seconds
Happy to answer questions about the architecture or the dataset. 
What are you building?
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
      <category>api</category>
      <category>javascript</category>
      <category>showdev</category>
      <category>sideprojects</category>
    </item>
  </channel>
</rss>
