meals / #129
- userId
-
Conrad Connelly @conrad.connelly22
- name
- Pasta with Marinara
- kind
- dinner
- calories
- 438
- proteinGrams
- 15.9
- carbsGrams
- 73
- fatGrams
- 9.2
- eatenAt
- createdAt
Component variants
Medium
Pasta with Marinara
#129
Small
meals/129 Related
References
curl -sS \
"https://example-data.com/api/v1/meals/129" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/meals/129"
);
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/129"
);
const meal = (await res.json()) as Meal;import requests
res = requests.get(
"https://example-data.com/api/v1/meals/129"
)
meal = res.json() {
"id": 129,
"userId": 30,
"name": "Pasta with Marinara",
"kind": "dinner",
"calories": 438,
"proteinGrams": 15.9,
"carbsGrams": 73,
"fatGrams": 9.2,
"eatenAt": "2025-07-21T13:58:14.344Z",
"createdAt": "2025-07-21T14:16:57.298Z"
}