example-data.com

measurements / #60

userId
Jennifer Stoltenberg @jennifer_stoltenberg
kind
height
value
183.5
unit
cm
measuredAt
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/measurements/60"
)
measurement = res.json()
{
  "id": 60,
  "userId": 25,
  "kind": "height",
  "value": 183.5,
  "unit": "cm",
  "measuredAt": "2025-11-21T00:36:24.313Z",
  "createdAt": "2025-11-21T01:07:02.534Z"
}
Draftbit