example-data.com

nutrition-logs

nutrition-logs

Page 8 of 10.

userId
Phyllis Hyatt @phyllis_hyatt83
date
2025-05-22
totalCalories
2386
totalProteinGrams
183.2
totalCarbsGrams
179.2
totalFatGrams
104
waterMl
3481
createdAt
userId
Phyllis Hyatt @phyllis_hyatt83
date
2026-04-15
totalCalories
1385
totalProteinGrams
119.8
totalCarbsGrams
105.5
totalFatGrams
53.8
waterMl
2522
createdAt
userId
Colby Kovacek @colby_kovacek40
date
2025-08-02
totalCalories
2626
totalProteinGrams
112.1
totalCarbsGrams
328.8
totalFatGrams
95.8
waterMl
845
createdAt
userId
Colby Kovacek @colby_kovacek40
date
2026-04-05
totalCalories
2101
totalProteinGrams
181.3
totalCarbsGrams
165.1
totalFatGrams
79.5
waterMl
2218
createdAt
userId
Mable West @mable_west
date
2026-04-24
totalCalories
2111
totalProteinGrams
140.3
totalCarbsGrams
194.8
totalFatGrams
85.6
waterMl
1302
createdAt
userId
Mable West @mable_west
date
2025-07-02
totalCalories
1915
totalProteinGrams
106.9
totalCarbsGrams
242.5
totalFatGrams
57.5
waterMl
2808
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": 169,
      "userId": 84,
      "date": "2025-05-22",
      "totalCalories": 2386,
      "totalProteinGrams": 183.2,
      "totalCarbsGrams": 179.2,
      "totalFatGrams": 104,
      "waterMl": 3481,
      "createdAt": "2025-05-22T23:59:59.999Z"
    },
    {
      "id": 170,
      "userId": 84,
      "date": "2026-04-15",
      "totalCalories": 1385,
      "totalProteinGrams": 119.8,
      "totalCarbsGrams": 105.5,
      "totalFatGrams": 53.8,
      "waterMl": 2522,
      "createdAt": "2026-04-15T23:59:59.999Z"
    },
    {
      "id": 171,
      "userId": 85,
      "date": "2025-08-02",
      "totalCalories": 2626,
      "totalProteinGrams": 112.1,
      "totalCarbsGrams": 328.8,
      "totalFatGrams": 95.8,
      "waterMl": 845,
      "createdAt": "2025-08-02T23:59:59.999Z"
    }
  ],
  "meta": {
    "page": 8,
    "limit": 24,
    "total": 496,
    "totalPages": 21
  },
  "links": {
    "self": "/api/v1/nutrition-logs?page=8",
    "next": "/api/v1/nutrition-logs?page=9",
    "prev": "/api/v1/nutrition-logs?page=7"
  }
}
Draftbit