measurements / #52
- userId
-
Guy Christiansen @guy.christiansen40
- kind
- thigh
- value
- 77.6
- unit
- cm
- measuredAt
- createdAt
Component variants
Medium
#52
#52
Small
measurements/52 Related
References
curl -sS \
"https://example-data.com/api/v1/measurements/52" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/measurements/52"
);
const measurement = await res.json();import type { Measurement } from "https://example-data.com/types/measurements.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/measurements/52"
);
const measurement = (await res.json()) as Measurement;import requests
res = requests.get(
"https://example-data.com/api/v1/measurements/52"
)
measurement = res.json() {
"id": 52,
"userId": 21,
"kind": "thigh",
"value": 77.6,
"unit": "cm",
"measuredAt": "2025-08-10T17:59:58.092Z",
"createdAt": "2025-08-10T18:40:11.079Z"
}