example-data.com

nutrition-logs

nutrition-logs

Page 9 of 10.

userId
Matilde Beahan @matilde_beahan
date
2025-08-26
totalCalories
1816
totalProteinGrams
151.2
totalCarbsGrams
223.9
totalFatGrams
35.1
waterMl
711
createdAt
userId
Esperanza Casper @esperanza_casper
date
2025-07-19
totalCalories
2198
totalProteinGrams
198.6
totalCarbsGrams
253.8
totalFatGrams
43.2
waterMl
2191
createdAt
userId
Esperanza Casper @esperanza_casper
date
2025-10-28
totalCalories
1984
totalProteinGrams
175.1
totalCarbsGrams
215.6
totalFatGrams
46.8
waterMl
2205
createdAt
userId
Tabitha McKenzie @tabitha_mckenzie
date
2025-09-21
totalCalories
3192
totalProteinGrams
189.8
totalCarbsGrams
372.8
totalFatGrams
104.6
waterMl
1299
createdAt
userId
Tabitha McKenzie @tabitha_mckenzie
date
2025-07-17
totalCalories
2327
totalProteinGrams
118.2
totalCarbsGrams
287.6
totalFatGrams
78.2
waterMl
3189
createdAt
userId
Tabitha McKenzie @tabitha_mckenzie
date
2025-06-18
totalCalories
2663
totalProteinGrams
106.3
totalCarbsGrams
326
totalFatGrams
103.7
waterMl
1039
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": 193,
      "userId": 96,
      "date": "2025-08-26",
      "totalCalories": 1816,
      "totalProteinGrams": 151.2,
      "totalCarbsGrams": 223.9,
      "totalFatGrams": 35.1,
      "waterMl": 711,
      "createdAt": "2025-08-26T23:59:59.999Z"
    },
    {
      "id": 194,
      "userId": 97,
      "date": "2025-07-19",
      "totalCalories": 2198,
      "totalProteinGrams": 198.6,
      "totalCarbsGrams": 253.8,
      "totalFatGrams": 43.2,
      "waterMl": 2191,
      "createdAt": "2025-07-19T23:59:59.999Z"
    },
    {
      "id": 195,
      "userId": 97,
      "date": "2025-10-28",
      "totalCalories": 1984,
      "totalProteinGrams": 175.1,
      "totalCarbsGrams": 215.6,
      "totalFatGrams": 46.8,
      "waterMl": 2205,
      "createdAt": "2025-10-28T23:59:59.999Z"
    }
  ],
  "meta": {
    "page": 9,
    "limit": 24,
    "total": 496,
    "totalPages": 21
  },
  "links": {
    "self": "/api/v1/nutrition-logs?page=9",
    "next": "/api/v1/nutrition-logs?page=10",
    "prev": "/api/v1/nutrition-logs?page=8"
  }
}
Draftbit