example-data.com

nutrition-logs

nutrition-logs

Page 3 of 10.

userId
Jennifer Stoltenberg @jennifer_stoltenberg
date
2026-05-03
totalCalories
2121
totalProteinGrams
60.6
totalCarbsGrams
369.5
totalFatGrams
44.5
waterMl
3502
createdAt
userId
Melvina Reilly @melvina_reilly83
date
2025-06-21
totalCalories
2109
totalProteinGrams
68.2
totalCarbsGrams
190.8
totalFatGrams
119.2
waterMl
3020
createdAt
userId
Melvina Reilly @melvina_reilly83
date
2026-04-23
totalCalories
2489
totalProteinGrams
149.6
totalCarbsGrams
360.2
totalFatGrams
50
waterMl
1570
createdAt
userId
Melvina Reilly @melvina_reilly83
date
2026-01-21
totalCalories
2450
totalProteinGrams
170.4
totalCarbsGrams
271.1
totalFatGrams
76
waterMl
3286
createdAt
userId
Rosella Homenick @rosella.homenick
date
2025-11-07
totalCalories
1396
totalProteinGrams
73.6
totalCarbsGrams
184.5
totalFatGrams
40.4
waterMl
1745
createdAt
userId
Rosella Homenick @rosella.homenick
date
2026-02-11
totalCalories
2684
totalProteinGrams
195.5
totalCarbsGrams
327.7
totalFatGrams
65.7
waterMl
2963
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": 49,
      "userId": 25,
      "date": "2026-05-03",
      "totalCalories": 2121,
      "totalProteinGrams": 60.6,
      "totalCarbsGrams": 369.5,
      "totalFatGrams": 44.5,
      "waterMl": 3502,
      "createdAt": "2026-05-03T23:59:59.999Z"
    },
    {
      "id": 50,
      "userId": 26,
      "date": "2025-06-21",
      "totalCalories": 2109,
      "totalProteinGrams": 68.2,
      "totalCarbsGrams": 190.8,
      "totalFatGrams": 119.2,
      "waterMl": 3020,
      "createdAt": "2025-06-21T23:59:59.999Z"
    },
    {
      "id": 51,
      "userId": 26,
      "date": "2026-04-23",
      "totalCalories": 2489,
      "totalProteinGrams": 149.6,
      "totalCarbsGrams": 360.2,
      "totalFatGrams": 50,
      "waterMl": 1570,
      "createdAt": "2026-04-23T23:59:59.999Z"
    }
  ],
  "meta": {
    "page": 3,
    "limit": 24,
    "total": 496,
    "totalPages": 21
  },
  "links": {
    "self": "/api/v1/nutrition-logs?page=3",
    "next": "/api/v1/nutrition-logs?page=4",
    "prev": "/api/v1/nutrition-logs?page=2"
  }
}
Draftbit