meals / #28
- userId
-
Einar Volkman @einar_volkman69
- name
- Overnight Oats
- kind
- breakfast
- calories
- 533
- proteinGrams
- 13.7
- carbsGrams
- 76.6
- fatGrams
- 19.1
- eatenAt
- createdAt
Component variants
Medium
Overnight Oats
#28
Small
meals/28 Related
References
curl -sS \
"https://example-data.com/api/v1/meals/28" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/meals/28"
);
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/28"
);
const meal = (await res.json()) as Meal;import requests
res = requests.get(
"https://example-data.com/api/v1/meals/28"
)
meal = res.json() {
"id": 28,
"userId": 7,
"name": "Overnight Oats",
"kind": "breakfast",
"calories": 533,
"proteinGrams": 13.7,
"carbsGrams": 76.6,
"fatGrams": 19.1,
"eatenAt": "2026-03-30T00:23:21.898Z",
"createdAt": "2026-03-30T00:46:40.042Z"
}