meals / #211
- userId
-
Hermina West @hermina.west3
- name
- Hard Boiled Eggs
- kind
- snack
- calories
- 576
- proteinGrams
- 42.1
- carbsGrams
- 35.9
- fatGrams
- 29.3
- eatenAt
- createdAt
Component variants
Medium
Hard Boiled Eggs
#211
Small
meals/211 Related
References
curl -sS \
"https://example-data.com/api/v1/meals/211" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/meals/211"
);
const meal = await res.json();import type { Meal } from "https://example-data.com/types/meals.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/meals/211"
);
const meal = (await res.json()) as Meal;import requests
res = requests.get(
"https://example-data.com/api/v1/meals/211"
)
meal = res.json() {
"id": 211,
"userId": 51,
"name": "Hard Boiled Eggs",
"kind": "snack",
"calories": 576,
"proteinGrams": 42.1,
"carbsGrams": 35.9,
"fatGrams": 29.3,
"eatenAt": "2025-07-19T15:29:04.431Z",
"createdAt": "2025-07-19T15:48:01.647Z"
}