example-data.com

measurements / #92

userId
Dwight Dicki-Medhurst @dwight.dicki-medhurst69
kind
resting_hr
value
75.1
unit
bpm
measuredAt
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/measurements/92"
)
measurement = res.json()
{
  "id": 92,
  "userId": 35,
  "kind": "resting_hr",
  "value": 75.1,
  "unit": "bpm",
  "measuredAt": "2025-12-21T04:41:52.306Z",
  "createdAt": "2025-12-21T04:54:30.134Z"
}
Draftbit