example-data.com

measurements / #39

userId
Casimir Smitham @casimir_smitham35
kind
thigh
value
51.4
unit
cm
measuredAt
createdAt

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/measurements/39" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/measurements/39"
);
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/39"
);
const measurement = (await res.json()) as Measurement;
import requests

res = requests.get(
    "https://example-data.com/api/v1/measurements/39"
)
measurement = res.json()
{
  "id": 39,
  "userId": 16,
  "kind": "thigh",
  "value": 51.4,
  "unit": "cm",
  "measuredAt": "2026-02-24T05:37:23.696Z",
  "createdAt": "2026-02-24T06:23:59.798Z"
}
Draftbit