nutrition-logs #183
- userId
-
Myrl Pollich @myrl.pollich
- date
- 2026-03-07
- totalCalories
- 2650
- totalProteinGrams
- 119.3
- totalCarbsGrams
- 390.1
- totalFatGrams
- 68
- waterMl
- 3075
- createdAt
Overview
nutrition-logs / #183
#183
#183
Request
curl example
curl -sS \ "https://example-data.com/api/v1/nutrition-logs/183" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/nutrition-logs/183" ); 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/183"
);
const nutritionLog = (await res.json()) as NutritionLog; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/nutrition-logs/183"
)
nutrition_log = res.json() Response
{
"id": 183,
"userId": 90,
"date": "2026-03-07",
"totalCalories": 2650,
"totalProteinGrams": 119.3,
"totalCarbsGrams": 390.1,
"totalFatGrams": 68,
"waterMl": 3075,
"createdAt": "2026-03-07T23:59:59.999Z"
}