example-data.com

measurements / #182

userId
Theresia Collins @theresia_collins86
kind
waist
value
83.3
unit
cm
measuredAt
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/measurements/182"
)
measurement = res.json()
{
  "id": 182,
  "userId": 63,
  "kind": "waist",
  "value": 83.3,
  "unit": "cm",
  "measuredAt": "2025-10-05T03:32:24.282Z",
  "createdAt": "2025-10-05T03:38:06.437Z"
}
Draftbit