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.

Endpoint health
verified 2d ago
get_exercise_types
get_exercises
get_exercise_details
get_muscle_groups
4/4 passing latest checkself-healing
Endpoints
4
Updated
26d 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.

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'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace musclewiki-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""MuscleWiki Exercise API — browse equipment, muscles, and exercises."""
from parse_apis.musclewiki_exercise_api import MuscleWiki, ExerciseNotFound

client = MuscleWiki()

# List all available equipment types
for eq in client.equipmenttypes.list(limit=5):
    print(eq.id, eq.name)

# List all muscle groups
for muscle in client.musclegroups.list(limit=5):
    print(muscle.id, muscle.name)

# Search exercises filtered by muscle group (chest = id 2)
for ex in client.exercisesummaries.search(muscle_id=2, limit=3):
    print(ex.name, ex.equipment, ex.difficulty)

# Drill into a single exercise for full details
summary = client.exercisesummaries.search(query="bench press", limit=1).first()
if summary:
    try:
        detail = summary.details()
        print(detail.name, detail.equipment, detail.difficulty)
        for step in detail.correct_steps:
            print(step.order, step.text)
        for m in detail.muscles_primary:
            print(m.id, m.name)
    except ExerciseNotFound as exc:
        print(f"Exercise not found: {exc}")

print("exercised: equipmenttypes.list / musclegroups.list / exercisesummaries.search / details")
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
2d 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/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. 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 →
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.
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.
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.
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.
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.
fmhy.net API
Browse, search, and extract resource listings from the FMHY (freemediaheckyeah) wiki. Retrieve entries by category, keyword, or star rating across all wiki pages.
Wikipedia API
Search Wikipedia and instantly access full article content on any topic, then explore related articles by browsing through Wikipedia categories. Retrieve article metadata, extracts, and navigate curated category trees to discover connected subjects.
athletic.net API
Search and analyze cross country and track & field performance data across the US, including athlete profiles, meet results, team rosters, and rankings. Access comprehensive meet information, historical records, and state-level competition data to track athlete progress and discover top performers.