measurements / #138
- userId
-
Green Kozey @green_kozey22
- kind
- thigh
- value
- 77
- unit
- cm
- measuredAt
- createdAt
Component variants
Medium
#138
#138
Small
measurements/138 Related
References
curl -sS \
"https://example-data.com/api/v1/measurements/138" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/measurements/138"
);
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/138"
);
const measurement = (await res.json()) as Measurement;import requests
res = requests.get(
"https://example-data.com/api/v1/measurements/138"
)
measurement = res.json() {
"id": 138,
"userId": 49,
"kind": "thigh",
"value": 77,
"unit": "cm",
"measuredAt": "2025-06-30T17:33:18.070Z",
"createdAt": "2025-06-30T18:09:57.956Z"
}