example-data.com

nutrition-logs / #27

userId
Alanna Kilback @alanna_kilback31
date
2025-08-12
totalCalories
2237
totalProteinGrams
114.9
totalCarbsGrams
360.9
totalFatGrams
37.1
waterMl
1763
createdAt

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/nutrition-logs/27" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/nutrition-logs/27"
);
const nutritionLog = await res.json();
import type { NutritionLog } from "https://example-data.com/types/nutrition-logs.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/nutrition-logs/27"
);
const nutritionLog = (await res.json()) as NutritionLog;
import requests

res = requests.get(
    "https://example-data.com/api/v1/nutrition-logs/27"
)
nutrition_log = res.json()
{
  "id": 27,
  "userId": 14,
  "date": "2025-08-12",
  "totalCalories": 2237,
  "totalProteinGrams": 114.9,
  "totalCarbsGrams": 360.9,
  "totalFatGrams": 37.1,
  "waterMl": 1763,
  "createdAt": "2025-08-12T23:59:59.999Z"
}
Draftbit