example-data.com

measurements

measurements

Browse 760 measurements records. Free mock data API by Draftbit — fetch over REST or browse paginated HTML.

userId
Charlene Roberts @charlene_roberts
kind
resting_hr
value
48.9
unit
bpm
measuredAt
createdAt
userId
Charlene Roberts @charlene_roberts
kind
hip
value
96.1
unit
cm
measuredAt
createdAt
userId
Amina King @amina_king41
kind
chest
value
109.4
unit
cm
measuredAt
createdAt
userId
Amina King @amina_king41
kind
arm
value
34.6
unit
cm
measuredAt
createdAt
userId
Amina King @amina_king41
kind
waist
value
71.2
unit
cm
measuredAt
createdAt
userId
Conner Bernhard @conner.bernhard33
kind
weight
value
125.2
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": 1,
      "userId": 1,
      "kind": "resting_hr",
      "value": 48.9,
      "unit": "bpm",
      "measuredAt": "2025-07-08T07:02:41.682Z",
      "createdAt": "2025-07-08T07:11:11.881Z"
    },
    {
      "id": 2,
      "userId": 1,
      "kind": "hip",
      "value": 96.1,
      "unit": "cm",
      "measuredAt": "2025-10-19T05:26:11.115Z",
      "createdAt": "2025-10-19T06:04:15.103Z"
    },
    {
      "id": 3,
      "userId": 2,
      "kind": "chest",
      "value": 109.4,
      "unit": "cm",
      "measuredAt": "2025-09-08T18:10:41.232Z",
      "createdAt": "2025-09-08T19:08:51.174Z"
    }
  ],
  "meta": {
    "page": 1,
    "limit": 25,
    "total": 760,
    "totalPages": 31
  },
  "links": {
    "self": "/api/v1/measurements?page=1",
    "first": "/api/v1/measurements?page=1",
    "last": "/api/v1/measurements?page=31",
    "next": "/api/v1/measurements?page=2",
    "prev": null
  }
}

View full response →

Draftbit