nutrition-logs #331
- userId
-
Vincenza Zemlak-Collier @vincenza_zemlak-collier
- date
- 2025-06-08
- totalCalories
- 2803
- totalProteinGrams
- 169.8
- totalCarbsGrams
- 379.2
- totalFatGrams
- 67.4
- waterMl
- 1057
- createdAt
Overview
nutrition-logs / #331
#331
#331
Request
curl example
curl -sS \ "https://example-data.com/api/v1/nutrition-logs/331" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/nutrition-logs/331" ); 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/331"
);
const nutritionLog = (await res.json()) as NutritionLog; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/nutrition-logs/331"
)
nutrition_log = res.json() Response
{
"id": 331,
"userId": 168,
"date": "2025-06-08",
"totalCalories": 2803,
"totalProteinGrams": 169.8,
"totalCarbsGrams": 379.2,
"totalFatGrams": 67.4,
"waterMl": 1057,
"createdAt": "2025-06-08T23:59:59.999Z"
}