---
title: "Get workout by ID"
method: GET
path: "/workouts/{workout_id}"
tags: ["routines"]
---

# Get workout by ID

`GET /workouts/{workout_id}`

Retrieve a single workout with its exercise prescriptions.

## Path parameters

- `workout_id` integer, required — Workout ID

## Query parameters

- `lang` string, nullable — Response language code (e.g. 'en-us', 'pt-br'). Defaults to 'en-us' when omitted. See GET /languages for the full list. Non-English languages require GROWTH tier or higher (BASIC keys get them in the Playground).

## Response `200`

Successful Response

- WorkoutStandard — Standard workout information with full details.
  - `id` integer, required — Workout ID
  - `name` string, required — Workout name
  - `slug` string, required — URL-friendly slug
  - `description` string, nullable — Workout description
  - `difficulty` string, nullable — Difficulty level
  - `goal` string, nullable — Workout goal
  - `equipment` string[] — Equipment needed
  - `muscles_targeted` string[] — Primary muscles targeted
  - `bodymap_male` string, nullable — Base bodymap stream URL for male images
  - `bodymap_female` string, nullable — Base bodymap stream URL for female images
  - `exercises` WorkoutExerciseRef[], required — Exercises in this workout with prescription details
    - `sort` integer, required — Sort order within the workout
    - `superset` integer, nullable — Superset group number
    - `exercise` ExerciseRef, required — Reference to an exercise (ID and name only).
      - `id` integer, required — Exercise ID
      - `name` string, required — Exercise name
    - `category` string, nullable — Equipment category
    - `difficulty` string, nullable — Difficulty level
    - `reps_or_duration` string, nullable — Whether this is reps or duration based
    - `reps_or_duration_count` string, nullable — Number of reps or duration
    - `sets` string, nullable — Number of sets

## Other responses

- `404` — Workout not found
- `422` — Validation Error

---

[API](https://skmtc.dev/musclewiki/apis/musclewiki-api.md) · [All operations](https://skmtc.dev/musclewiki/apis/musclewiki-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/musclewiki/musclewiki-api/revisions/fccb1308d3dc/schema)
