example-data.com

nutrition-logs / #200

userId
Whitney O'Reilly @whitney.oreilly
date
2025-12-10
totalCalories
2072
totalProteinGrams
55.2
totalCarbsGrams
334.1
totalFatGrams
57.2
waterMl
687
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/nutrition-logs/200"
)
nutrition_log = res.json()
{
  "id": 200,
  "userId": 99,
  "date": "2025-12-10",
  "totalCalories": 2072,
  "totalProteinGrams": 55.2,
  "totalCarbsGrams": 334.1,
  "totalFatGrams": 57.2,
  "waterMl": 687,
  "createdAt": "2025-12-10T23:59:59.999Z"
}
Draftbit