meals / #108
- userId
-
Jennifer Stoltenberg @jennifer_stoltenberg
- name
- Pasta with Marinara
- kind
- dinner
- calories
- 488
- proteinGrams
- 51.8
- carbsGrams
- 10.8
- fatGrams
- 26.4
- eatenAt
- createdAt
Component variants
Medium
Pasta with Marinara
#108
Small
meals/108 Related
References
curl -sS \
"https://example-data.com/api/v1/meals/108" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/meals/108"
);
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/108"
);
const meal = (await res.json()) as Meal;import requests
res = requests.get(
"https://example-data.com/api/v1/meals/108"
)
meal = res.json() {
"id": 108,
"userId": 25,
"name": "Pasta with Marinara",
"kind": "dinner",
"calories": 488,
"proteinGrams": 51.8,
"carbsGrams": 10.8,
"fatGrams": 26.4,
"eatenAt": "2025-07-29T08:35:08.879Z",
"createdAt": "2025-07-29T08:45:31.212Z"
}