nutrition-logs #253
- userId
-
Gerda Streich @gerda_streich
- date
- 2025-08-03
- totalCalories
- 1489
- totalProteinGrams
- 77.4
- totalCarbsGrams
- 156.7
- totalFatGrams
- 61.4
- waterMl
- 1730
- createdAt
Overview
nutrition-logs / #253
#253
#253
Request
curl example
curl -sS \ "https://example-data.com/api/v1/nutrition-logs/253" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/nutrition-logs/253" ); 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/253"
);
const nutritionLog = (await res.json()) as NutritionLog; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/nutrition-logs/253"
)
nutrition_log = res.json() Response
{
"id": 253,
"userId": 126,
"date": "2025-08-03",
"totalCalories": 1489,
"totalProteinGrams": 77.4,
"totalCarbsGrams": 156.7,
"totalFatGrams": 61.4,
"waterMl": 1730,
"createdAt": "2025-08-03T23:59:59.999Z"
}