example-data.com

nutrition-logs

nutrition-logs

Page 4 of 10.

userId
Edward Jacobson @edward_jacobson38
date
2025-12-04
totalCalories
2116
totalProteinGrams
104.6
totalCarbsGrams
210.5
totalFatGrams
95.1
waterMl
2580
createdAt
userId
Margaretta Barrows @margaretta_barrows41
date
2026-03-21
totalCalories
1901
totalProteinGrams
122.8
totalCarbsGrams
146.2
totalFatGrams
91.7
waterMl
1715
createdAt
userId
Margaretta Barrows @margaretta_barrows41
date
2025-06-14
totalCalories
1999
totalProteinGrams
94.3
totalCarbsGrams
265.4
totalFatGrams
62.2
waterMl
1393
createdAt
userId
Gwendolyn Wyman @gwendolyn.wyman87
date
2026-04-20
totalCalories
2108
totalProteinGrams
78.7
totalCarbsGrams
253.6
totalFatGrams
86.5
waterMl
2238
createdAt
userId
Amely Daniel @amely_daniel
date
2025-11-01
totalCalories
2449
totalProteinGrams
85
totalCarbsGrams
310.1
totalFatGrams
96.5
waterMl
3424
createdAt
userId
Amely Daniel @amely_daniel
date
2026-01-30
totalCalories
2416
totalProteinGrams
98.4
totalCarbsGrams
247.5
totalFatGrams
114.7
waterMl
1830
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": 73,
      "userId": 38,
      "date": "2025-12-04",
      "totalCalories": 2116,
      "totalProteinGrams": 104.6,
      "totalCarbsGrams": 210.5,
      "totalFatGrams": 95.1,
      "waterMl": 2580,
      "createdAt": "2025-12-04T23:59:59.999Z"
    },
    {
      "id": 74,
      "userId": 39,
      "date": "2026-03-21",
      "totalCalories": 1901,
      "totalProteinGrams": 122.8,
      "totalCarbsGrams": 146.2,
      "totalFatGrams": 91.7,
      "waterMl": 1715,
      "createdAt": "2026-03-21T23:59:59.999Z"
    },
    {
      "id": 75,
      "userId": 39,
      "date": "2025-06-14",
      "totalCalories": 1999,
      "totalProteinGrams": 94.3,
      "totalCarbsGrams": 265.4,
      "totalFatGrams": 62.2,
      "waterMl": 1393,
      "createdAt": "2025-06-14T23:59:59.999Z"
    }
  ],
  "meta": {
    "page": 4,
    "limit": 24,
    "total": 496,
    "totalPages": 21
  },
  "links": {
    "self": "/api/v1/nutrition-logs?page=4",
    "next": "/api/v1/nutrition-logs?page=5",
    "prev": "/api/v1/nutrition-logs?page=3"
  }
}
Draftbit