example-data.com

measurements

measurements

Page 7 of 10.

userId
Samson Stroman @samson_stroman
kind
hip
value
115.2
unit
cm
measuredAt
createdAt
userId
Darian Schaden @darian_schaden36
kind
waist
value
90.8
unit
cm
measuredAt
createdAt
userId
Darian Schaden @darian_schaden36
kind
arm
value
35.1
unit
cm
measuredAt
createdAt
userId
Darian Schaden @darian_schaden36
kind
chest
value
98.5
unit
cm
measuredAt
createdAt
userId
Jo Haag-Mayer @jo_haag-mayer
kind
weight
value
73.5
unit
kg
measuredAt
createdAt
userId
Jo Haag-Mayer @jo_haag-mayer
kind
waist
value
93
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": 145,
      "userId": 52,
      "kind": "hip",
      "value": 115.2,
      "unit": "cm",
      "measuredAt": "2026-03-22T04:21:57.179Z",
      "createdAt": "2026-03-22T04:33:12.445Z"
    },
    {
      "id": 146,
      "userId": 53,
      "kind": "waist",
      "value": 90.8,
      "unit": "cm",
      "measuredAt": "2026-03-10T17:11:56.257Z",
      "createdAt": "2026-03-10T17:27:34.596Z"
    },
    {
      "id": 147,
      "userId": 53,
      "kind": "arm",
      "value": 35.1,
      "unit": "cm",
      "measuredAt": "2026-04-23T22:28:00.166Z",
      "createdAt": "2026-04-23T22:48:48.555Z"
    }
  ],
  "meta": {
    "page": 7,
    "limit": 24,
    "total": 760,
    "totalPages": 32
  },
  "links": {
    "self": "/api/v1/measurements?page=7",
    "next": "/api/v1/measurements?page=8",
    "prev": "/api/v1/measurements?page=6"
  }
}
Draftbit