example-data.com

nutrition-logs

nutrition-logs

Browse 496 nutrition-logs records. Free mock data API by Draftbit — fetch over REST or browse paginated HTML.

userId
Charlene Roberts @charlene_roberts
date
2026-04-16
totalCalories
2795
totalProteinGrams
82.6
totalCarbsGrams
393.1
totalFatGrams
99.1
waterMl
1137
createdAt
userId
Charlene Roberts @charlene_roberts
date
2025-07-07
totalCalories
2509
totalProteinGrams
88.9
totalCarbsGrams
312.1
totalFatGrams
100.5
waterMl
2819
createdAt
userId
Amina King @amina_king41
date
2025-11-27
totalCalories
2446
totalProteinGrams
142.3
totalCarbsGrams
275
totalFatGrams
86.3
waterMl
1365
createdAt
userId
Amina King @amina_king41
date
2025-12-15
totalCalories
2318
totalProteinGrams
69.6
totalCarbsGrams
310.8
totalFatGrams
88.5
waterMl
3032
createdAt
userId
Amina King @amina_king41
date
2026-05-02
totalCalories
2299
totalProteinGrams
154.4
totalCarbsGrams
189.7
totalFatGrams
102.5
waterMl
3390
createdAt
userId
Conner Bernhard @conner.bernhard33
date
2025-05-29
totalCalories
1624
totalProteinGrams
83.3
totalCarbsGrams
207.8
totalFatGrams
51.1
waterMl
2079
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": 1,
      "userId": 1,
      "date": "2026-04-16",
      "totalCalories": 2795,
      "totalProteinGrams": 82.6,
      "totalCarbsGrams": 393.1,
      "totalFatGrams": 99.1,
      "waterMl": 1137,
      "createdAt": "2026-04-16T23:59:59.999Z"
    },
    {
      "id": 2,
      "userId": 1,
      "date": "2025-07-07",
      "totalCalories": 2509,
      "totalProteinGrams": 88.9,
      "totalCarbsGrams": 312.1,
      "totalFatGrams": 100.5,
      "waterMl": 2819,
      "createdAt": "2025-07-07T23:59:59.999Z"
    },
    {
      "id": 3,
      "userId": 2,
      "date": "2025-11-27",
      "totalCalories": 2446,
      "totalProteinGrams": 142.3,
      "totalCarbsGrams": 275,
      "totalFatGrams": 86.3,
      "waterMl": 1365,
      "createdAt": "2025-11-27T23:59:59.999Z"
    }
  ],
  "meta": {
    "page": 1,
    "limit": 25,
    "total": 496,
    "totalPages": 20
  },
  "links": {
    "self": "/api/v1/nutrition-logs?page=1",
    "first": "/api/v1/nutrition-logs?page=1",
    "last": "/api/v1/nutrition-logs?page=20",
    "next": "/api/v1/nutrition-logs?page=2",
    "prev": null
  }
}

View full response →

Draftbit