Hevy SDK Documentation - v0.0.0
    Preparing search index...

    Interface RoutineExercise

    Represents an exercise within a routine.

    interface RoutineExercise {
        exercise_template_id: string;
        index: number;
        notes: string;
        rest_seconds: string;
        sets: RoutineSet[];
        supersets_id: number | null;
        title: string;
    }
    Index

    Properties

    exercise_template_id: string

    The id of the exercise template. Example: '05293BCA'

    index: number

    Index indicating the order of the exercise in the routine. Example: 0

    notes: string

    Routine notes on the exercise. Example: 'Focus on form. Go down to 90 degrees.'

    rest_seconds: string

    The rest time in seconds between sets of the exercise. Example: '60'

    sets: RoutineSet[]

    The sets performed in this exercise.

    supersets_id: number | null

    The id of the superset that the exercise belongs to. Nullable.

    title: string

    Title of the exercise. Example: 'Bench Press (Barbell)'