GET
/
exercise
/
{exerciseId}
curl --request GET \
  --url https://api.wrkout.xyz/exercise/{exerciseId} \
  --header 'X-API-Key: <api-key>'
{
  "id": "<string>",
  "name": "<string>",
  "displayName": "<string>",
  "aliases": [
    "<string>"
  ],
  "category": "STRENGTH",
  "primaryMuscle": [
    "ABDOMINALS"
  ],
  "secondaryMuscle": [
    "ABDOMINALS"
  ],
  "force": "PULL",
  "level": "BEGINNER",
  "mechanic": "COMPOUND",
  "equipment": "BODY_ONLY",
  "instructions": [
    "<string>"
  ],
  "premiumImages": [
    "<string>"
  ],
  "premiumVideos": [
    "<string>"
  ]
}

Authorizations

X-API-Key
string
header
required

Path Parameters

exerciseId
string
required

ID or Name of the exercise

Query Parameters

lang
string

Translation language requested. Please see the list of supported languages

Response

200 - application/json
successful operation
name
string
required

The name of the exercise (always in English)

id
string

The ID of the exercise

displayName
string

The display name of the exercise to present to the user

aliases
string[]

The alternative names of the exercise

category
enum<string>

The category of the exercise

Available options:
STRENGTH,
STRETCHING,
PLYOMETRICS,
STRONGMAN,
POWERLIFTING,
CARDIO,
OLYMPIC_WEIGHTLIFTING
primaryMuscle
enum<string>[]

The primary muscles targeted by the exercise

Available options:
ABDOMINALS,
ADDUCTORS,
BICEPS,
CHEST,
CALVES,
LOWER_BACK,
TRICEPS,
FOREARMS,
ABDUCTORS,
HAMSTRINGS,
QUADRICEPS,
SHOULDERS,
MIDDLE_BACK,
GLUTES,
LATS,
TRAPS,
NECK
secondaryMuscle
enum<string>[]

The secondary muscles targeted by the exercise

Available options:
ABDOMINALS,
ADDUCTORS,
BICEPS,
CHEST,
CALVES,
LOWER_BACK,
TRICEPS,
FOREARMS,
ABDUCTORS,
HAMSTRINGS,
QUADRICEPS,
SHOULDERS,
MIDDLE_BACK,
GLUTES,
LATS,
TRAPS,
NECK
force
enum<string> | null

The force applied by the exercise

Available options:
PULL,
PUSH,
STATIC
level
enum<string> | null

The level of the exercise

Available options:
BEGINNER,
INTERMEDIATE,
EXPERT
mechanic
enum<string> | null

The mechanic of the exercise

Available options:
COMPOUND,
ISOLATION
equipment
enum<string> | null

The equipment required for the exercise

Available options:
BODY_ONLY,
MACHINE,
OTHER,
FOAM_ROLL,
KETTLEBELLS,
DUMBBELL,
BARBELL,
CABLE,
BANDS,
MEDICINE_BALL,
E_Z_CURL_BAR,
EXERCISE_BALL
instructions
string[]

The instructions for the exercise

premiumImages
string[]

The premium images for the exercise. Only returned based on subscription plan

premiumVideos
string[]

The premium videos for the exercise. Only returned based on subscription plan