Filter exercises by multiple criteria with fuzzy search support and cursor-based pagination.
curl --request GET \
--url https://edb-with-videos-and-images-by-ascendapi.p.rapidapi.com/api/v1/exercises \
--header 'X-RapidAPI-Key: <api-key>'{
"success": true,
"meta": {
"total": 12778,
"hasNextPage": true,
"hasPreviousPage": false,
"nextCursor": "<string>",
"previousCursor": "<string>"
},
"data": [
{
"exerciseId": "exr_41n2hxnFMotsXTj3",
"name": "Bench Press",
"equipments": [
"Barbell"
],
"bodyParts": [
"Chest"
],
"exerciseType": "strength",
"targetMuscles": [
"Pectoralis Major Clavicular Head"
],
"secondaryMuscles": [
"Deltoid Anterior",
"Pectoralis Major Clavicular Head",
"Triceps Brachii"
],
"keywords": [
"Chest workout with barbell",
"Barbell bench press exercise",
"Strength training for chest",
"Upper body workout with barbell",
"Barbell chest exercises",
"Bench press for chest muscles",
"Building chest muscles with bench press",
"Chest strengthening with barbell",
"Bench press workout routine",
"Barbell exercises for chest muscle growth"
],
"imageUrl": ""
}
]
}Enter your RapidAPI key in the X-RapidAPI-Key header.
Filter exercises by name. Supports fuzzy matching.
"Bench Press"
Filter exercises by keywords. Use comma-separated values for multiple keywords.
"chest workout,barbell"
Filter exercises by primary target muscles. Use comma-separated values for multiple muscles.
"Pectoralis Major Clavicular Head,Deltoid Anterior"
Filter exercises by secondary muscles. Use comma-separated values for multiple muscles.
"Triceps Brachii,Deltoid Anterior"
Filter exercises by type (e.g., strength, cardio).
"strength"
Filter exercises by body parts. Use comma-separated values for multiple body parts.
"Chest,Shoulders"
Filter exercises by required equipment. Use comma-separated values for multiple equipment types.
"Barbell,Dumbbell"
Maximum number of results to return (min: 1, max: 25, default: 10)
"10"
Exercise ID to paginate after (for forward pagination)
Exercise ID to paginate before (for backward pagination)
Retrieve exercises by search filters
Indicates whether the request was successful
true
Metadata about cursor-based pagination
Show child attributes
Array of exercises matching the filter criteria
Show child attributes
Was this page helpful?
curl --request GET \
--url https://edb-with-videos-and-images-by-ascendapi.p.rapidapi.com/api/v1/exercises \
--header 'X-RapidAPI-Key: <api-key>'{
"success": true,
"meta": {
"total": 12778,
"hasNextPage": true,
"hasPreviousPage": false,
"nextCursor": "<string>",
"previousCursor": "<string>"
},
"data": [
{
"exerciseId": "exr_41n2hxnFMotsXTj3",
"name": "Bench Press",
"equipments": [
"Barbell"
],
"bodyParts": [
"Chest"
],
"exerciseType": "strength",
"targetMuscles": [
"Pectoralis Major Clavicular Head"
],
"secondaryMuscles": [
"Deltoid Anterior",
"Pectoralis Major Clavicular Head",
"Triceps Brachii"
],
"keywords": [
"Chest workout with barbell",
"Barbell bench press exercise",
"Strength training for chest",
"Upper body workout with barbell",
"Barbell chest exercises",
"Bench press for chest muscles",
"Building chest muscles with bench press",
"Chest strengthening with barbell",
"Bench press workout routine",
"Barbell exercises for chest muscle growth"
],
"imageUrl": ""
}
]
}