# Fitness Exercises Get {id}

> Returns a single exercise by its numeric ID.

- Skill: `gabrielmoreira/fitness-exercises-get-id` (Agent Skill)
- Install (CLI): `npx skillmds@latest add gabrielmoreira/fitness-exercises-get-id`
- Raw SKILL.md: https://api.skillmd.com/api/skills/gabrielmoreira/fitness-exercises-get-id/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Integrations & APIs
- Author: gabrielmoreira (https://skillmd.com/u/gabrielmoreira)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/gabrielmoreira/fitness-exercises-get-id

---


## Endpoint

**GET https://requiems.xyz/v1/health/exercises/{id}**

## Exercise by ID

Returns a single exercise by its numeric ID.

## Parameters

| Name | Type | Required | Location | Description |
| ---- | ---- | -------- | -------- | ----------- |
| `id` | integer | yes | path | Numeric exercise ID |

## Response Example

```json
{
  "data": {
    "id": 1,
    "name": "barbell bench press",
    "body_parts": ["chest"],
    "equipment": ["barbell"],
    "target_muscles": ["pectorals"],
    "secondary_muscles": ["triceps", "deltoids"],
    "instructions": [
      "Lie flat on a bench and grip the barbell slightly wider than shoulder-width.",
      "Lower the bar to your chest under control.",
      "Press the bar back up to full arm extension.",
      "Repeat for the desired number of repetitions."
    ]
  },
  "metadata": {
    "timestamp": "2026-01-01T00:00:00Z"
  }
}
```

## Response Fields

| Field | Type | Description |
| ----- | ---- | ----------- |
| `id` | integer | Unique exercise identifier |
| `name` | string | Exercise name |
| `body_parts` | array<string> | Body part categories involved |
| `equipment` | array<string> | Equipment required |
| `target_muscles` | array<string> | Primary muscles targeted |
| `secondary_muscles` | array<string> | Secondary muscles engaged |
| `instructions` | array<string> | Ordered step-by-step instructions |

## Errors

- `400` **bad_request** — The id parameter is not a positive integer.
- `404` **not_found** — No exercise exists with the given ID.
- `500` **internal_error** — Unexpected server error.

