meals / #87
- userId
-
Alvina Koch @alvina.koch8
- name
- Mediterranean Bowl
- kind
- dinner
- calories
- 517
- proteinGrams
- 57.9
- carbsGrams
- 12
- fatGrams
- 26.4
- eatenAt
- createdAt
Component variants
Medium
Mediterranean Bowl
#87
Small
meals/87 Related
References
curl -sS \
"https://example-data.com/api/v1/meals/87" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/meals/87"
);
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/87"
);
const meal = (await res.json()) as Meal;import requests
res = requests.get(
"https://example-data.com/api/v1/meals/87"
)
meal = res.json() {
"id": 87,
"userId": 20,
"name": "Mediterranean Bowl",
"kind": "dinner",
"calories": 517,
"proteinGrams": 57.9,
"carbsGrams": 12,
"fatGrams": 26.4,
"eatenAt": "2026-04-24T01:33:13.441Z",
"createdAt": "2026-04-24T01:35:02.376Z"
}