example-data.com

nutrition-logs

nutrition-logs

Page 7 of 10.

userId
Ryan Conroy @ryan_conroy
date
2026-03-14
totalCalories
1852
totalProteinGrams
182.1
totalCarbsGrams
105
totalFatGrams
78.2
waterMl
1660
createdAt
userId
Terence Lemke @terence.lemke85
date
2025-08-11
totalCalories
2075
totalProteinGrams
190.5
totalCarbsGrams
108.1
totalFatGrams
97.8
waterMl
2015
createdAt
userId
Terence Lemke @terence.lemke85
date
2026-05-20
totalCalories
1708
totalProteinGrams
105.6
totalCarbsGrams
195.3
totalFatGrams
56
waterMl
2974
createdAt
userId
Terence Lemke @terence.lemke85
date
2025-12-28
totalCalories
2684
totalProteinGrams
195.6
totalCarbsGrams
298.8
totalFatGrams
78.5
waterMl
3500
createdAt
userId
Candace Mueller @candace.mueller
date
2026-03-09
totalCalories
2445
totalProteinGrams
61.5
totalCarbsGrams
399.1
totalFatGrams
66.9
waterMl
3540
createdAt
userId
Candace Mueller @candace.mueller
date
2025-06-19
totalCalories
1904
totalProteinGrams
119.1
totalCarbsGrams
244.9
totalFatGrams
49.8
waterMl
556
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": 145,
      "userId": 73,
      "date": "2026-03-14",
      "totalCalories": 1852,
      "totalProteinGrams": 182.1,
      "totalCarbsGrams": 105,
      "totalFatGrams": 78.2,
      "waterMl": 1660,
      "createdAt": "2026-03-14T23:59:59.999Z"
    },
    {
      "id": 146,
      "userId": 74,
      "date": "2025-08-11",
      "totalCalories": 2075,
      "totalProteinGrams": 190.5,
      "totalCarbsGrams": 108.1,
      "totalFatGrams": 97.8,
      "waterMl": 2015,
      "createdAt": "2025-08-11T23:59:59.999Z"
    },
    {
      "id": 147,
      "userId": 74,
      "date": "2026-05-20",
      "totalCalories": 1708,
      "totalProteinGrams": 105.6,
      "totalCarbsGrams": 195.3,
      "totalFatGrams": 56,
      "waterMl": 2974,
      "createdAt": "2026-05-20T23:59:59.999Z"
    }
  ],
  "meta": {
    "page": 7,
    "limit": 24,
    "total": 496,
    "totalPages": 21
  },
  "links": {
    "self": "/api/v1/nutrition-logs?page=7",
    "next": "/api/v1/nutrition-logs?page=8",
    "prev": "/api/v1/nutrition-logs?page=6"
  }
}
Draftbit