example-data.com

nutrition-logs

nutrition-logs

Page 5 of 10.

userId
Samson Stroman @samson_stroman
date
2026-01-03
totalCalories
2341
totalProteinGrams
87.7
totalCarbsGrams
375.3
totalFatGrams
54.3
waterMl
1115
createdAt
userId
Samson Stroman @samson_stroman
date
2025-10-31
totalCalories
1327
totalProteinGrams
113
totalCarbsGrams
116.7
totalFatGrams
45.4
waterMl
1374
createdAt
userId
Samson Stroman @samson_stroman
date
2026-05-09
totalCalories
2132
totalProteinGrams
93.2
totalCarbsGrams
302.9
totalFatGrams
60.8
waterMl
1769
createdAt
userId
Darian Schaden @darian_schaden36
date
2025-06-23
totalCalories
3002
totalProteinGrams
101.1
totalCarbsGrams
395.2
totalFatGrams
113
waterMl
1337
createdAt
userId
Darian Schaden @darian_schaden36
date
2025-09-29
totalCalories
1656
totalProteinGrams
186.3
totalCarbsGrams
105.4
totalFatGrams
54.3
waterMl
1142
createdAt
userId
Jo Haag-Mayer @jo_haag-mayer
date
2026-01-23
totalCalories
1371
totalProteinGrams
98.8
totalCarbsGrams
108.8
totalFatGrams
60.1
waterMl
689
createdAt

Showing first 6 of 24 on this page.

curl -sS \
  "https://example-data.com/api/v1/nutrition-logs?limit=25"
const res = await fetch(
  "https://example-data.com/api/v1/nutrition-logs?limit=25"
);
const { data, meta } = await res.json();
import type { NutritionLog, ListEnvelope } from "https://example-data.com/types/nutrition-logs.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/nutrition-logs?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<NutritionLog>;
import requests

res = requests.get(
    "https://example-data.com/api/v1/nutrition-logs",
    params={"limit": 25},
)
data = res.json()
{
  "data": [
    {
      "id": 97,
      "userId": 52,
      "date": "2026-01-03",
      "totalCalories": 2341,
      "totalProteinGrams": 87.7,
      "totalCarbsGrams": 375.3,
      "totalFatGrams": 54.3,
      "waterMl": 1115,
      "createdAt": "2026-01-03T23:59:59.999Z"
    },
    {
      "id": 98,
      "userId": 52,
      "date": "2025-10-31",
      "totalCalories": 1327,
      "totalProteinGrams": 113,
      "totalCarbsGrams": 116.7,
      "totalFatGrams": 45.4,
      "waterMl": 1374,
      "createdAt": "2025-10-31T23:59:59.999Z"
    },
    {
      "id": 99,
      "userId": 52,
      "date": "2026-05-09",
      "totalCalories": 2132,
      "totalProteinGrams": 93.2,
      "totalCarbsGrams": 302.9,
      "totalFatGrams": 60.8,
      "waterMl": 1769,
      "createdAt": "2026-05-09T23:59:59.999Z"
    }
  ],
  "meta": {
    "page": 5,
    "limit": 24,
    "total": 496,
    "totalPages": 21
  },
  "links": {
    "self": "/api/v1/nutrition-logs?page=5",
    "next": "/api/v1/nutrition-logs?page=6",
    "prev": "/api/v1/nutrition-logs?page=4"
  }
}
Draftbit