meals / #214
- userId
-
Samson Stroman @samson_stroman
- name
- Mediterranean Bowl
- kind
- dinner
- calories
- 400
- proteinGrams
- 28.8
- carbsGrams
- 8.1
- fatGrams
- 28
- eatenAt
- createdAt
Component variants
Medium
Mediterranean Bowl
#214
Small
meals/214 Related
References
curl -sS \
"https://example-data.com/api/v1/meals/214" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/meals/214"
);
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/214"
);
const meal = (await res.json()) as Meal;import requests
res = requests.get(
"https://example-data.com/api/v1/meals/214"
)
meal = res.json() {
"id": 214,
"userId": 52,
"name": "Mediterranean Bowl",
"kind": "dinner",
"calories": 400,
"proteinGrams": 28.8,
"carbsGrams": 8.1,
"fatGrams": 28,
"eatenAt": "2026-05-18T18:00:46.162Z",
"createdAt": "2026-05-18T18:29:47.427Z"
}