example-data.com

measurements

measurements

Page 5 of 10.

userId
Lenny Howe @lenny.howe
kind
resting_hr
value
69.5
unit
bpm
measuredAt
createdAt
userId
Lenny Howe @lenny.howe
kind
height
value
158.3
unit
cm
measuredAt
createdAt
userId
Lenny Howe @lenny.howe
kind
chest
value
117.5
unit
cm
measuredAt
createdAt
userId
Edward Jacobson @edward_jacobson38
kind
body_fat_pct
value
36.3
unit
%
measuredAt
createdAt
userId
Edward Jacobson @edward_jacobson38
kind
hip
value
118.9
unit
cm
measuredAt
createdAt
userId
Edward Jacobson @edward_jacobson38
kind
waist
value
82
unit
cm
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": 97,
      "userId": 37,
      "kind": "resting_hr",
      "value": 69.5,
      "unit": "bpm",
      "measuredAt": "2026-02-05T02:13:39.574Z",
      "createdAt": "2026-02-05T02:15:49.891Z"
    },
    {
      "id": 98,
      "userId": 37,
      "kind": "height",
      "value": 158.3,
      "unit": "cm",
      "measuredAt": "2026-04-05T04:59:37.957Z",
      "createdAt": "2026-04-05T05:19:50.004Z"
    },
    {
      "id": 99,
      "userId": 37,
      "kind": "chest",
      "value": 117.5,
      "unit": "cm",
      "measuredAt": "2025-12-27T05:48:35.751Z",
      "createdAt": "2025-12-27T05:54:35.879Z"
    }
  ],
  "meta": {
    "page": 5,
    "limit": 24,
    "total": 760,
    "totalPages": 32
  },
  "links": {
    "self": "/api/v1/measurements?page=5",
    "next": "/api/v1/measurements?page=6",
    "prev": "/api/v1/measurements?page=4"
  }
}
Draftbit