measurements
measurements
Page 3 of 10.
- measurements/49
- measurements/50
- measurements/51
- measurements/52
- measurements/53
- measurements/54
- measurements/55
- measurements/56
- measurements/57
- measurements/58
- measurements/59
- measurements/60
- measurements/61
- measurements/62
- measurements/63
- measurements/64
- measurements/65
- measurements/66
- measurements/67
- measurements/68
- measurements/69
- measurements/70
- measurements/71
- measurements/72
- userId
-
Alvina Koch @alvina.koch8
- kind
- weight
- value
- 63.1
- unit
- kg
- measuredAt
- createdAt
- userId
-
Alvina Koch @alvina.koch8
- kind
- resting_hr
- value
- 74.8
- unit
- bpm
- measuredAt
- createdAt
- userId
-
Guy Christiansen @guy.christiansen40
- kind
- body_fat_pct
- value
- 5.3
- unit
- %
- measuredAt
- createdAt
- userId
-
Guy Christiansen @guy.christiansen40
- kind
- thigh
- value
- 77.6
- unit
- cm
- measuredAt
- createdAt
- userId
-
Guy Christiansen @guy.christiansen40
- kind
- arm
- value
- 48.2
- unit
- cm
- measuredAt
- createdAt
- userId
-
Guy Christiansen @guy.christiansen40
- kind
- resting_hr
- value
- 51.3
- unit
- bpm
- 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": 49,
"userId": 20,
"kind": "weight",
"value": 63.1,
"unit": "kg",
"measuredAt": "2026-02-23T22:09:38.610Z",
"createdAt": "2026-02-23T22:38:11.631Z"
},
{
"id": 50,
"userId": 20,
"kind": "resting_hr",
"value": 74.8,
"unit": "bpm",
"measuredAt": "2026-03-19T17:54:09.107Z",
"createdAt": "2026-03-19T18:39:43.522Z"
},
{
"id": 51,
"userId": 21,
"kind": "body_fat_pct",
"value": 5.3,
"unit": "%",
"measuredAt": "2026-05-02T10:51:30.743Z",
"createdAt": "2026-05-02T11:10:24.538Z"
}
],
"meta": {
"page": 3,
"limit": 24,
"total": 760,
"totalPages": 32
},
"links": {
"self": "/api/v1/measurements?page=3",
"next": "/api/v1/measurements?page=4",
"prev": "/api/v1/measurements?page=2"
}
}