measurements / #113
- userId
-
Amely Daniel @amely_daniel
- kind
- height
- value
- 152
- unit
- cm
- measuredAt
- createdAt
Component variants
Medium
#113
#113
Small
measurements/113 Related
References
curl -sS \
"https://example-data.com/api/v1/measurements/113" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/measurements/113"
);
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/113"
);
const measurement = (await res.json()) as Measurement;import requests
res = requests.get(
"https://example-data.com/api/v1/measurements/113"
)
measurement = res.json() {
"id": 113,
"userId": 41,
"kind": "height",
"value": 152,
"unit": "cm",
"measuredAt": "2025-09-24T08:48:00.917Z",
"createdAt": "2025-09-24T09:43:41.779Z"
}