Acefitness APIacefitness.org ↗
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.
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'
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.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number for pagination. Each page returns up to 10 results. |
| queryrequired | string | Search keyword for exercises (e.g. 'squat', 'push up', 'deadlift'). |
{
"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 Acefitness API
The Acefitness API on Parse exposes 4 endpoints for the publicly available data on acefitness.org. Calls return JSON over HTTPS and are billed per successful response.
Pin a release with the API-Snapshot-Version header so canonical updates don't silently change your contract.