example-data.com

nutrition-logs

nutrition-logs

Page 2 of 10.

userId
Judy Hackett @judy_hackett49
date
2025-07-24
totalCalories
2485
totalProteinGrams
198.5
totalCarbsGrams
299.1
totalFatGrams
55
waterMl
1698
createdAt
userId
Judy Hackett @judy_hackett49
date
2025-08-06
totalCalories
1671
totalProteinGrams
142.4
totalCarbsGrams
103.8
totalFatGrams
76.2
waterMl
2545
createdAt
userId
Alanna Kilback @alanna_kilback31
date
2025-08-12
totalCalories
2237
totalProteinGrams
114.9
totalCarbsGrams
360.9
totalFatGrams
37.1
waterMl
1763
createdAt
userId
Alanna Kilback @alanna_kilback31
date
2025-08-04
totalCalories
2111
totalProteinGrams
114.1
totalCarbsGrams
211.4
totalFatGrams
89.9
waterMl
2163
createdAt
userId
Zachariah Herzog @zachariah_herzog42
date
2026-04-23
totalCalories
2063
totalProteinGrams
181.3
totalCarbsGrams
252.3
totalFatGrams
36.5
waterMl
2916
createdAt
userId
Zachariah Herzog @zachariah_herzog42
date
2026-03-06
totalCalories
1514
totalProteinGrams
80
totalCarbsGrams
168.9
totalFatGrams
57.6
waterMl
3943
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": 25,
      "userId": 13,
      "date": "2025-07-24",
      "totalCalories": 2485,
      "totalProteinGrams": 198.5,
      "totalCarbsGrams": 299.1,
      "totalFatGrams": 55,
      "waterMl": 1698,
      "createdAt": "2025-07-24T23:59:59.999Z"
    },
    {
      "id": 26,
      "userId": 13,
      "date": "2025-08-06",
      "totalCalories": 1671,
      "totalProteinGrams": 142.4,
      "totalCarbsGrams": 103.8,
      "totalFatGrams": 76.2,
      "waterMl": 2545,
      "createdAt": "2025-08-06T23:59:59.999Z"
    },
    {
      "id": 27,
      "userId": 14,
      "date": "2025-08-12",
      "totalCalories": 2237,
      "totalProteinGrams": 114.9,
      "totalCarbsGrams": 360.9,
      "totalFatGrams": 37.1,
      "waterMl": 1763,
      "createdAt": "2025-08-12T23:59:59.999Z"
    }
  ],
  "meta": {
    "page": 2,
    "limit": 24,
    "total": 496,
    "totalPages": 21
  },
  "links": {
    "self": "/api/v1/nutrition-logs?page=2",
    "next": "/api/v1/nutrition-logs?page=3",
    "prev": "/api/v1/nutrition-logs?page=1"
  }
}
Draftbit