measurements / #98
- userId
-
Lenny Howe @lenny.howe
- kind
- height
- value
- 158.3
- unit
- cm
- measuredAt
- createdAt
Component variants
Medium
#98
#98
Small
measurements/98 Related
References
curl -sS \
"https://example-data.com/api/v1/measurements/98" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/measurements/98"
);
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/98"
);
const measurement = (await res.json()) as Measurement;import requests
res = requests.get(
"https://example-data.com/api/v1/measurements/98"
)
measurement = res.json() {
"id": 98,
"userId": 37,
"kind": "height",
"value": 158.3,
"unit": "cm",
"measuredAt": "2026-04-05T04:59:37.957Z",
"createdAt": "2026-04-05T05:19:50.004Z"
}