example-data.com

measurements

measurements

Page 3 of 10.

userId
Alvina Koch @alvina.koch8
kind
weight
value
63.1
unit
kg
measuredAt
createdAt
userId
Alvina Koch @alvina.koch8
kind
resting_hr
value
74.8
unit
bpm
measuredAt
createdAt
userId
Guy Christiansen @guy.christiansen40
kind
body_fat_pct
value
5.3
unit
%
measuredAt
createdAt
userId
Guy Christiansen @guy.christiansen40
kind
thigh
value
77.6
unit
cm
measuredAt
createdAt
userId
Guy Christiansen @guy.christiansen40
kind
arm
value
48.2
unit
cm
measuredAt
createdAt
userId
Guy Christiansen @guy.christiansen40
kind
resting_hr
value
51.3
unit
bpm
measuredAt
createdAt

Showing first 6 of 24 on this page.

curl -sS \
  "https://example-data.com/api/v1/measurements?limit=25"
const res = await fetch(
  "https://example-data.com/api/v1/measurements?limit=25"
);
const { data, meta } = await res.json();
import type { Measurement, ListEnvelope } from "https://example-data.com/types/measurements.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/measurements?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Measurement>;
import requests

res = requests.get(
    "https://example-data.com/api/v1/measurements",
    params={"limit": 25},
)
data = res.json()
{
  "data": [
    {
      "id": 49,
      "userId": 20,
      "kind": "weight",
      "value": 63.1,
      "unit": "kg",
      "measuredAt": "2026-02-23T22:09:38.610Z",
      "createdAt": "2026-02-23T22:38:11.631Z"
    },
    {
      "id": 50,
      "userId": 20,
      "kind": "resting_hr",
      "value": 74.8,
      "unit": "bpm",
      "measuredAt": "2026-03-19T17:54:09.107Z",
      "createdAt": "2026-03-19T18:39:43.522Z"
    },
    {
      "id": 51,
      "userId": 21,
      "kind": "body_fat_pct",
      "value": 5.3,
      "unit": "%",
      "measuredAt": "2026-05-02T10:51:30.743Z",
      "createdAt": "2026-05-02T11:10:24.538Z"
    }
  ],
  "meta": {
    "page": 3,
    "limit": 24,
    "total": 760,
    "totalPages": 32
  },
  "links": {
    "self": "/api/v1/measurements?page=3",
    "next": "/api/v1/measurements?page=4",
    "prev": "/api/v1/measurements?page=2"
  }
}
Draftbit