example-data.com

nutrition-logs

nutrition-logs

Page 6 of 10.

userId
Mckenna Hegmann-Price @mckenna.hegmann-price77
date
2026-02-06
totalCalories
2565
totalProteinGrams
109.6
totalCarbsGrams
286.9
totalFatGrams
108.8
waterMl
800
createdAt
userId
Mckenna Hegmann-Price @mckenna.hegmann-price77
date
2025-11-06
totalCalories
2445
totalProteinGrams
172.9
totalCarbsGrams
218.5
totalFatGrams
97.7
waterMl
1579
createdAt
userId
Mckenna Hegmann-Price @mckenna.hegmann-price77
date
2026-04-19
totalCalories
2522
totalProteinGrams
196.6
totalCarbsGrams
365
totalFatGrams
30.6
waterMl
636
createdAt
userId
Theresia Collins @theresia_collins86
date
2026-02-09
totalCalories
1940
totalProteinGrams
84.9
totalCarbsGrams
320.8
totalFatGrams
35.2
waterMl
2766
createdAt
userId
Beau Stiedemann @beau.stiedemann
date
2025-08-10
totalCalories
2418
totalProteinGrams
161.5
totalCarbsGrams
371
totalFatGrams
32
waterMl
1924
createdAt
userId
Enos Hamill @enos_hamill
date
2026-05-01
totalCalories
1547
totalProteinGrams
50
totalCarbsGrams
179.4
totalFatGrams
69.9
waterMl
3385
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": 121,
      "userId": 62,
      "date": "2026-02-06",
      "totalCalories": 2565,
      "totalProteinGrams": 109.6,
      "totalCarbsGrams": 286.9,
      "totalFatGrams": 108.8,
      "waterMl": 800,
      "createdAt": "2026-02-06T23:59:59.999Z"
    },
    {
      "id": 122,
      "userId": 62,
      "date": "2025-11-06",
      "totalCalories": 2445,
      "totalProteinGrams": 172.9,
      "totalCarbsGrams": 218.5,
      "totalFatGrams": 97.7,
      "waterMl": 1579,
      "createdAt": "2025-11-06T23:59:59.999Z"
    },
    {
      "id": 123,
      "userId": 62,
      "date": "2026-04-19",
      "totalCalories": 2522,
      "totalProteinGrams": 196.6,
      "totalCarbsGrams": 365,
      "totalFatGrams": 30.6,
      "waterMl": 636,
      "createdAt": "2026-04-19T23:59:59.999Z"
    }
  ],
  "meta": {
    "page": 6,
    "limit": 24,
    "total": 496,
    "totalPages": 21
  },
  "links": {
    "self": "/api/v1/nutrition-logs?page=6",
    "next": "/api/v1/nutrition-logs?page=7",
    "prev": "/api/v1/nutrition-logs?page=5"
  }
}
Draftbit