Discover/MuscleWiki API
live

MuscleWiki APImusclewiki.com

Search and retrieve exercises from MuscleWiki. Filter by muscle group, equipment type, or keyword. Get steps, images, videos, and difficulty for each exercise.

This API takes change requests — .
Endpoint health
verified 6d ago
get_exercise_types
get_muscle_groups
get_exercises
get_exercise_details
4/4 passing latest checkself-healing
Endpoints
4
Updated
6d ago

What is the MuscleWiki API?

The MuscleWiki API exposes 4 endpoints for browsing and retrieving exercise data, including full exercise details with form steps, gendered images, and video demonstrations. Use get_exercises to search and paginate across the full exercise catalog with filters for muscle group and equipment type, or call get_exercise_details to pull structured data for a single exercise including difficulty level, grip types, and targeted muscles.

This call costs1 credit / call— charged only on success
Try it

No input parameters required.

api.parse.bot/scraper/475e3660-3ef2-46a3-a37d-c3a792b39793/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/475e3660-3ef2-46a3-a37d-c3a792b39793/get_exercise_types' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 4 totalmissing one? ·

Returns the complete list of equipment types (categories) available on MuscleWiki. Each equipment type has an integer ID usable as a filter in get_exercises. The list is static and rarely changes.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "equipments": "array of objects with id (integer) and name (string) for each equipment type"
  },
  "sample": {
    "data": {
      "equipments": [
        {
          "id": 1,
          "name": "Barbell"
        },
        {
          "id": 2,
          "name": "Dumbbells"
        },
        {
          "id": 3,
          "name": "Bodyweight"
        },
        {
          "id": 4,
          "name": "Machine"
        }
      ]
    },
    "status": "success"
  }
}

About the MuscleWiki API

Exercise Search and Filtering

The get_exercises endpoint accepts up to five optional parameters: query for keyword search, muscle_id and equipment_id for categorical filtering (using IDs from get_muscle_groups and get_exercise_types), and limit/offset for pagination. Each result in the results array includes the exercise id, name, slug, url, thumbnail, equipment, muscles, and difficulty. The total and has_next fields make it straightforward to walk through large result sets page by page.

Lookup Tables

Before filtering, call get_muscle_groups to retrieve the full list of muscle group objects (each with an id and name), and get_exercise_types to get available equipment categories in the same shape. These IDs are what get_exercises expects for the muscle_id and equipment_id filter params. There is no free-text equivalent for these filters; the integer IDs are required.

Exercise Detail

Passing an exercise_id to get_exercise_details returns a richer object: the images and videos fields each contain male and female sub-arrays, so you can surface gender-specific demonstrations. Videos include both a url and a thumbnail. The grips array lists applicable grip variations with their own IDs and names. Additional fields cover difficulty, equipment, seo_tags, and the canonical url and slug for deep-linking.

Reliability & maintenanceVerified

The MuscleWiki API is a managed, monitored endpoint for musclewiki.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when musclewiki.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official musclewiki.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
6d ago
Latest check
4/4 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a workout planner that filters exercises by target muscle group using muscle_id and available gym equipment using equipment_id.
  • Populate an exercise library app with thumbnails, difficulty ratings, and video demonstrations from get_exercise_details.
  • Generate equipment-specific workout programs by querying get_exercise_types then listing matching exercises per category.
  • Display gendered exercise animations or images using the male and female arrays in the images and videos fields.
  • Implement an exercise search bar backed by the query parameter on get_exercises with paginated results.
  • Catalog exercises by grip variation using the grips array returned in detailed exercise responses.
  • Build a difficulty-tier workout selector by filtering get_exercises results by the difficulty field in each summary.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does MuscleWiki have an official developer API?+
MuscleWiki does not publish a documented public developer API. This Parse API provides structured access to the exercise catalog without requiring any account or authentication.
What does `get_exercise_details` return that `get_exercises` does not?+
get_exercises returns a summary per exercise: id, name, slug, thumbnail, equipment, muscles, and difficulty. get_exercise_details adds grips, full images and videos objects with both male and female variants, seo_tags, and the canonical url. It does not include free-text step-by-step form instructions as a discrete field; narrative content is not a named field in the response schema.
Can I filter exercises by both muscle group and equipment type at the same time?+
Yes. The get_exercises endpoint accepts both muscle_id and equipment_id as independent optional parameters, and they can be combined in a single request along with a query keyword and pagination controls.
Does the API return user-submitted exercises or community content like workout routines?+
Not currently. The API covers the core exercise catalog — exercises with associated metadata, images, videos, and muscle targets. It does not expose user profiles, saved routines, or community-submitted variations. You can fork this API on Parse and revise it to add an endpoint targeting that content.
How does pagination work in `get_exercises`?+
The response includes limit, offset, total, and has_next. Pass offset incremented by limit on each subsequent request to step through pages. has_next being false indicates you have reached the end of the result set.
Page content last updated . Spec covers 4 endpoints from musclewiki.com.
Related APIs in HealthcareSee all →
acefitness.org API
Search through thousands of exercises and fitness articles while getting personalized BMI calculations and locating certified trainers in your area by ZIP code. This comprehensive fitness resource helps you build workouts, learn proper techniques, and connect with professional guidance all in one place.
muscleandstrength.com API
Search and browse Muscle & Strength supplements to find product details like pricing, available variants, and stock status. Quickly compare options and check availability across their catalog to make informed purchasing decisions.
examine.com API
Search and explore evidence-based information about supplements, health conditions, and outcomes with detailed supplement profiles, study summaries, and categorized health data. Get comprehensive overviews of how specific supplements affect various health conditions backed by scientific research.
wikihow.com API
Search and retrieve wikiHow articles with complete instructions, including all steps, ingredients, tips, and categories organized in a structured format. Instantly access random articles or find exactly what you need with powerful search functionality to learn how to do virtually anything.
whatsonzwift.com API
Browse Zwift's complete workout library, view training plan schedules, and access detailed workout specifications including intervals, durations, TSS values, and intensity zones. Find group workouts and explore available training plans.
wikia.org API
Search and retrieve detailed information about characters, episodes, lore, and other content from Fandom wikis across thousands of fan communities. Browse wiki categories, look up specific pages, and access structured data about your favorite franchises all in one place.
eldenring.wiki.fextralife.com API
Search and retrieve structured Elden Ring game information from the Fextralife Wiki, including weapons, enemies, locations, and lore. Access full article content with hierarchical sections, tables, and images, or search the complete article catalog by keyword.
musicbrainz.org API
Search MusicBrainz for artists and recordings, then fetch detailed metadata for artists, recordings, releases, and release groups, including credits, tags/genres, and track listings.