example-data.com

measurements

measurements

Page 8 of 10.

userId
Merl Jenkins @merl.jenkins6
kind
weight
value
71.9
unit
kg
measuredAt
createdAt
userId
Merl Jenkins @merl.jenkins6
kind
chest
value
94.9
unit
cm
measuredAt
createdAt
userId
Merl Jenkins @merl.jenkins6
kind
thigh
value
50.7
unit
cm
measuredAt
createdAt
userId
Jarrell Flatley @jarrell_flatley39
kind
arm
value
31.3
unit
cm
measuredAt
createdAt
userId
Jarrell Flatley @jarrell_flatley39
kind
resting_hr
value
59.3
unit
bpm
measuredAt
createdAt
userId
Jarrell Flatley @jarrell_flatley39
kind
height
value
173
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": 169,
      "userId": 60,
      "kind": "weight",
      "value": 71.9,
      "unit": "kg",
      "measuredAt": "2026-01-02T03:53:49.779Z",
      "createdAt": "2026-01-02T04:27:26.215Z"
    },
    {
      "id": 170,
      "userId": 60,
      "kind": "chest",
      "value": 94.9,
      "unit": "cm",
      "measuredAt": "2025-07-12T07:36:45.645Z",
      "createdAt": "2025-07-12T08:12:51.686Z"
    },
    {
      "id": 171,
      "userId": 60,
      "kind": "thigh",
      "value": 50.7,
      "unit": "cm",
      "measuredAt": "2025-07-22T16:09:02.225Z",
      "createdAt": "2025-07-22T16:29:07.347Z"
    }
  ],
  "meta": {
    "page": 8,
    "limit": 24,
    "total": 760,
    "totalPages": 32
  },
  "links": {
    "self": "/api/v1/measurements?page=8",
    "next": "/api/v1/measurements?page=9",
    "prev": "/api/v1/measurements?page=7"
  }
}
Draftbit