nutrition-logs #484
- userId
-
Charlene Kuhic @charlene_kuhic
- date
- 2025-08-03
- totalCalories
- 2551
- totalProteinGrams
- 197.4
- totalCarbsGrams
- 321.5
- totalFatGrams
- 52.8
- waterMl
- 1330
- createdAt
Overview
nutrition-logs / #484
#484
#484
Request
curl example
curl -sS \ "https://example-data.com/api/v1/nutrition-logs/484" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/nutrition-logs/484" ); const nutritionLog = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/nutrition-logs.d.ts https://example-data.com/types/nutrition-logs.d.ts
import type { NutritionLog } from "./types/nutrition-logs";
const res = await fetch(
"https://example-data.com/api/v1/nutrition-logs/484"
);
const nutritionLog = (await res.json()) as NutritionLog; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/nutrition-logs/484"
)
nutrition_log = res.json() Response
{
"id": 484,
"userId": 244,
"date": "2025-08-03",
"totalCalories": 2551,
"totalProteinGrams": 197.4,
"totalCarbsGrams": 321.5,
"totalFatGrams": 52.8,
"waterMl": 1330,
"createdAt": "2025-08-03T23:59:59.999Z"
}