example-data.com

measurements

measurements

Page 4 of 10.

userId
Jensen Bashirian @jensen_bashirian
kind
height
value
194.2
unit
cm
measuredAt
createdAt
userId
Conrad Connelly @conrad.connelly22
kind
hip
value
103
unit
cm
measuredAt
createdAt
userId
Conrad Connelly @conrad.connelly22
kind
thigh
value
49.8
unit
cm
measuredAt
createdAt
userId
Conrad Connelly @conrad.connelly22
kind
arm
value
38.3
unit
cm
measuredAt
createdAt
userId
Izaiah Rempel @izaiah_rempel
kind
resting_hr
value
90.6
unit
bpm
measuredAt
createdAt
userId
Izaiah Rempel @izaiah_rempel
kind
weight
value
100.3
unit
kg
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": 73,
      "userId": 29,
      "kind": "height",
      "value": 194.2,
      "unit": "cm",
      "measuredAt": "2025-10-13T16:41:42.147Z",
      "createdAt": "2025-10-13T17:39:53.182Z"
    },
    {
      "id": 74,
      "userId": 30,
      "kind": "hip",
      "value": 103,
      "unit": "cm",
      "measuredAt": "2025-09-16T13:22:04.886Z",
      "createdAt": "2025-09-16T13:32:24.219Z"
    },
    {
      "id": 75,
      "userId": 30,
      "kind": "thigh",
      "value": 49.8,
      "unit": "cm",
      "measuredAt": "2025-07-22T01:09:37.784Z",
      "createdAt": "2025-07-22T01:48:48.891Z"
    }
  ],
  "meta": {
    "page": 4,
    "limit": 24,
    "total": 760,
    "totalPages": 32
  },
  "links": {
    "self": "/api/v1/measurements?page=4",
    "next": "/api/v1/measurements?page=5",
    "prev": "/api/v1/measurements?page=3"
  }
}
Draftbit