meals / #62
- userId
-
Zachariah Herzog @zachariah_herzog42
- name
- Pasta with Marinara
- kind
- dinner
- calories
- 722
- proteinGrams
- 58
- carbsGrams
- 65.3
- fatGrams
- 25.4
- eatenAt
- createdAt
Component variants
Medium
Pasta with Marinara
#62
Small
meals/62 Related
References
curl -sS \
"https://example-data.com/api/v1/meals/62" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/meals/62"
);
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/62"
);
const meal = (await res.json()) as Meal;import requests
res = requests.get(
"https://example-data.com/api/v1/meals/62"
)
meal = res.json() {
"id": 62,
"userId": 15,
"name": "Pasta with Marinara",
"kind": "dinner",
"calories": 722,
"proteinGrams": 58,
"carbsGrams": 65.3,
"fatGrams": 25.4,
"eatenAt": "2025-06-21T07:06:33.837Z",
"createdAt": "2025-06-21T07:08:03.954Z"
}