example-data.com

measurements

measurements

Page 2 of 10.

userId
Leonel Hamill @leonel_hamill33
kind
body_fat_pct
value
21.2
unit
%
measuredAt
createdAt
userId
Leonel Hamill @leonel_hamill33
kind
hip
value
122.1
unit
cm
measuredAt
createdAt
userId
Mara Johnson @mara.johnson17
kind
chest
value
96.5
unit
cm
measuredAt
createdAt
userId
Mara Johnson @mara.johnson17
kind
thigh
value
80
unit
cm
measuredAt
createdAt
userId
Mara Johnson @mara.johnson17
kind
resting_hr
value
75.8
unit
bpm
measuredAt
createdAt
userId
Mara Johnson @mara.johnson17
kind
waist
value
112.3
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": 25,
      "userId": 11,
      "kind": "body_fat_pct",
      "value": 21.2,
      "unit": "%",
      "measuredAt": "2026-03-14T22:32:08.117Z",
      "createdAt": "2026-03-14T23:29:12.615Z"
    },
    {
      "id": 26,
      "userId": 11,
      "kind": "hip",
      "value": 122.1,
      "unit": "cm",
      "measuredAt": "2025-08-13T15:17:51.594Z",
      "createdAt": "2025-08-13T15:33:59.141Z"
    },
    {
      "id": 27,
      "userId": 12,
      "kind": "chest",
      "value": 96.5,
      "unit": "cm",
      "measuredAt": "2026-02-06T14:29:21.536Z",
      "createdAt": "2026-02-06T15:20:21.147Z"
    }
  ],
  "meta": {
    "page": 2,
    "limit": 24,
    "total": 760,
    "totalPages": 32
  },
  "links": {
    "self": "/api/v1/measurements?page=2",
    "next": "/api/v1/measurements?page=3",
    "prev": "/api/v1/measurements?page=1"
  }
}
Draftbit