meals / #236
- userId
-
Raheem Kovacek @raheem_kovacek3
- name
- Tofu Curry
- kind
- dinner
- calories
- 523
- proteinGrams
- 17.8
- carbsGrams
- 51.6
- fatGrams
- 27.3
- eatenAt
- createdAt
Component variants
Medium
Tofu Curry
#236
Small
meals/236 Related
References
curl -sS \
"https://example-data.com/api/v1/meals/236" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/meals/236"
);
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/236"
);
const meal = (await res.json()) as Meal;import requests
res = requests.get(
"https://example-data.com/api/v1/meals/236"
)
meal = res.json() {
"id": 236,
"userId": 57,
"name": "Tofu Curry",
"kind": "dinner",
"calories": 523,
"proteinGrams": 17.8,
"carbsGrams": 51.6,
"fatGrams": 27.3,
"eatenAt": "2025-09-16T01:28:44.944Z",
"createdAt": "2025-09-16T01:51:35.438Z"
}