Plank
Aggredior capto arbitro dicta vicissitudo suggero ea synagoga ad decens comis officia.
Overview
exercises / #35
Aggredior capto arbitro dicta vicissitudo suggero ea synagoga ad decens comis officia.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/exercises/35" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/exercises/35" ); const exercise = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/exercises.d.ts https://example-data.com/types/exercises.d.ts
import type { Exercise } from "./types/exercises";
const res = await fetch(
"https://example-data.com/api/v1/exercises/35"
);
const exercise = (await res.json()) as Exercise; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/exercises/35"
)
exercise = res.json() Response
{
"id": 35,
"name": "Plank",
"slug": "plank-35",
"muscleGroup": "core",
"equipment": [
"barbell",
"dumbbell",
"bodyweight"
],
"description": "Aggredior capto arbitro dicta vicissitudo suggero ea synagoga ad decens comis officia.",
"instructions": [
"Speciosus careo suscipio ventus textus apostolus.",
"Desparatus porro deinde quidem astrum.",
"Coniuratio tempore vobis bis tonsor tempus debeo taedium."
],
"createdAt": "2023-11-05T01:02:21.239Z"
}