example-data.com

measurements / #174

userId
Jarrell Flatley @jarrell_flatley39
kind
height
value
173
unit
cm
measuredAt
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/measurements/174"
)
measurement = res.json()
{
  "id": 174,
  "userId": 61,
  "kind": "height",
  "value": 173,
  "unit": "cm",
  "measuredAt": "2025-06-10T06:55:41.905Z",
  "createdAt": "2025-06-10T06:58:39.934Z"
}
Draftbit