example-data.com

nutrition-logs / #171

userId
Colby Kovacek @colby_kovacek40
date
2025-08-02
totalCalories
2626
totalProteinGrams
112.1
totalCarbsGrams
328.8
totalFatGrams
95.8
waterMl
845
createdAt

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/nutrition-logs/171" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/nutrition-logs/171"
);
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/171"
);
const nutritionLog = (await res.json()) as NutritionLog;
import requests

res = requests.get(
    "https://example-data.com/api/v1/nutrition-logs/171"
)
nutrition_log = res.json()
{
  "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"
}
Draftbit