example-data.com
Menu
Browse docs and collections

Overview

measurements / #20

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/measurements/20" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/measurements/20"
);
const measurement = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/measurements.d.ts https://example-data.com/types/measurements.d.ts
import type { Measurement } from "./types/measurements";

const res = await fetch(
  "https://example-data.com/api/v1/measurements/20"
);
const measurement = (await res.json()) as Measurement;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/measurements/20"
)
measurement = res.json()

Response

{
  "id": 20,
  "userId": 10,
  "kind": "thigh",
  "value": 61.6,
  "unit": "cm",
  "measuredAt": "2026-02-02T09:34:01.476Z",
  "createdAt": "2026-02-02T10:13:59.427Z"
}