Discover/ACE Fitness API
live

ACE Fitness APIacefitness.org

Search ACE Fitness exercises, browse articles, calculate BMI, and find certified trainers by ZIP code. 4 endpoints, structured JSON responses.

Endpoint health
verified 3d ago
search_exercises
browse_articles
calculate_bmi
find_trainer
4/4 passing latest checkself-healing
Endpoints
4
Updated
2mo ago

What is the ACE Fitness API?

The ACE Fitness API covers 4 endpoints that surface data from the American Council on Exercise's exercise library, blog, and trainer directory. The search_exercises endpoint returns up to 10 exercises per page with title, URL, description, and image. You can also calculate BMI from imperial measurements, browse categorized fitness articles, and locate ACE-certified trainers by US ZIP code.

This call costs2 credits / call— charged only on success
Try it
Page number for pagination. Each page returns up to 10 results.
Search keyword for exercises (e.g. 'squat', 'push up', 'deadlift').
api.parse.bot/scraper/b9169296-b894-49f0-b220-f533ffc617db/<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/b9169296-b894-49f0-b220-f533ffc617db/search_exercises?page=1&query=squat' \
  -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 acefitness-org-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.

"""Walkthrough: ACE Fitness SDK — search exercises, browse articles, calculate BMI, find trainers."""
from parse_apis.acefitness_org_api import AceFitness, InputFormatInvalid

client = AceFitness()

# Search exercises by keyword, cap total items fetched.
for exercise in client.exercises.search(query="squat", limit=5):
    print(exercise.title, exercise.url)

# Browse nutrition articles.
article = client.articles.list(category="nutrition", limit=1).first()
if article is not None:
    print(article.title, article.author, article.date)

# Calculate BMI from weight and height.
result = client.bmi.calculate(weight_lbs=145, height_feet=5, height_inches=7)
print(f"BMI: {result.bmi} ({result.classification})")

# Find certified trainers near a ZIP code.
try:
    trainer = client.trainers.search(zip_code="10001", limit=1).first()
except InputFormatInvalid:
    trainer = None

if trainer is not None:
    print(trainer.full_name, trainer.city, trainer.state_code)

print("exercised: exercises.search / articles.list / bmi.calculate / trainers.search")
All endpoints · 4 totalmissing one? ·

Search the ACE Fitness exercise library by keyword. Returns up to 10 exercises per page with title, URL, description, and image. Pagination is supported via the page parameter.

Input
ParamTypeDescription
pageintegerPage number for pagination. Each page returns up to 10 results.
queryrequiredstringSearch keyword for exercises (e.g. 'squat', 'push up', 'deadlift').
Response
{
  "type": "object",
  "fields": {
    "page": "current page number",
    "exercises": "array of exercise objects with title, url, description, and image",
    "total_results": "estimated total number of matching exercises"
  },
  "sample": {
    "data": {
      "page": 1,
      "exercises": [
        {
          "url": "https://www.acefitness.org/resources/everyone/exercise-library/362/goblet-squat/",
          "image": "https://ik.imagekit.io/02fmeo4exvw/exercise-library/large/362-1.jpg",
          "title": "Butt & Hip Exercises | Goblet Squat - ACE Fitness",
          "description": "Stand with the feet about shoulder-width apart, and hold a dumbbell in a vertical position directly in front of the chest."
        }
      ],
      "total_results": 59
    },
    "status": "success"
  }
}

About the ACE Fitness API

Exercise and Article Data

The search_exercises endpoint accepts a required query string (e.g. 'squat', 'deadlift') and an optional page integer for pagination. Each page returns up to 10 exercise objects containing title, url, description, image, and a total_results count so you can implement multi-page traversal. The browse_articles endpoint accepts an optional category slug — valid values include 'nutrition', 'strength-training', 'workouts', 'fitness', and 'active-aging' — and returns article objects with title, url, date, author, category, description, and image.

BMI Calculator

The calculate_bmi endpoint takes weight_lbs, height_feet, and an optional height_inches component, applies the standard formula (weight_lbs / total_inches^2) * 703, and returns a bmi value rounded to 3 decimal places alongside a classification string: one of Underweight, Normal weight, Overweight, or Obese. This makes it straightforward to integrate a standards-aligned BMI check into any fitness or health application without reimplementing the formula on your side.

Trainer Finder

The find_trainer endpoint accepts a US zip_code string and an optional limit integer. It returns trainer objects with full_name, city, state_code, profile_url, and profile_image_url. Coverage is limited to ACE-certified fitness professionals and is US-only given the ZIP code input model. This makes it useful for geo-targeted trainer directories or referral tools.

Reliability & maintenanceVerified

The ACE Fitness API is a managed, monitored endpoint for acefitness.org — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when acefitness.org 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 acefitness.org 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
3d 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 pulls structured exercise data including descriptions and images from the ACE library by keyword.
  • Display ACE fitness blog content filtered by category such as 'nutrition' or 'strength-training' in a content aggregator.
  • Embed a BMI calculator in a health app using the calculate_bmi endpoint with imperial height and weight inputs.
  • Power a trainer-finder feature that surfaces ACE-certified professionals near a user-supplied ZIP code.
  • Paginate through all exercises matching a movement pattern (e.g. 'lunge') by iterating the page parameter.
  • Build a fitness newsletter tool that pulls fresh articles by category slug to populate weekly digests.
  • Cross-reference BMI classification data with exercise recommendations in a personal health dashboard.
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 ACE Fitness have an official developer API?+
ACE Fitness does not publish a public developer API or documented data access program. This Parse API provides structured access to the exercise library, articles, BMI calculator, and trainer directory.
What does find_trainer return, and does it cover trainers outside the US?+
The endpoint returns full_name, city, state_code, profile_url, and profile_image_url for ACE-certified trainers near the provided ZIP code. Coverage is US-only because the input is a US ZIP code. International trainer lookups are not currently supported. You can fork this API on Parse and revise it to add an endpoint that accepts a non-US location format if the source data supports it.
Can I retrieve the full details of a single exercise, such as step-by-step instructions or muscle group tags?+
Not currently. The search_exercises endpoint returns title, url, description, and image per exercise. Detailed fields like step-by-step instructions, primary muscles targeted, or equipment lists are not included in the current response shape. You can fork this API on Parse and revise it to add an exercise-detail endpoint using the url field returned by search.
How does pagination work for exercise search results?+
The search_exercises endpoint returns up to 10 results per page. Pass the page integer parameter to advance through results. The response includes a total_results field with an estimated count, which you can use to calculate how many pages are available for a given query.
Are there any limitations on the article data returned by browse_articles?+
The browse_articles endpoint returns the most recent articles optionally filtered by a category slug. It does not support keyword search within articles, date-range filtering, or author-based filtering. The available category slugs are nutrition, strength-training, workouts, fitness, and active-aging. You can fork this API on Parse and revise it to add article search or additional filter parameters if the source supports them.
Page content last updated . Spec covers 4 endpoints from acefitness.org.
Related APIs in HealthcareSee all →
musclewiki.com API
Browse thousands of exercises by equipment type and muscle group, then access detailed information including form tips, variations, and targeted muscle groups for each exercise. Perfect for building personalized workout routines or finding alternatives that match your available equipment.
liftmanual.com API
Access data from liftmanual.com.
planetfitness.com API
Search Planet Fitness club locations across the US by city, state, or ZIP code. Retrieve detailed information including addresses, operating hours, amenities, equipment, and membership plans for any club.
usreps.org API
Access data from usreps.org.
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.
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.
aeaweb.org API
Search for academic papers across American Economic Association journals to instantly access abstracts, author information, JEL classifications, and citation metrics. Retrieve detailed article information to stay current with the latest economic research and citations from premier sources like the American Economic Review.
therapytribe.com API
Search for therapists in your area and access their credentials, specialties, pricing, and client focus areas all in one place. Find the right mental health professional by filtering through available locations and detailed therapy type information.