meals / #67
- userId
-
Casimir Smitham @casimir_smitham35
- name
- Quinoa Bowl
- kind
- lunch
- calories
- 733
- proteinGrams
- 57.1
- carbsGrams
- 70
- fatGrams
- 25
- eatenAt
- createdAt
Component variants
Medium
Quinoa Bowl
#67
Small
meals/67 Related
References
curl -sS \
"https://example-data.com/api/v1/meals/67" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/meals/67"
);
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/67"
);
const meal = (await res.json()) as Meal;import requests
res = requests.get(
"https://example-data.com/api/v1/meals/67"
)
meal = res.json() {
"id": 67,
"userId": 16,
"name": "Quinoa Bowl",
"kind": "lunch",
"calories": 733,
"proteinGrams": 57.1,
"carbsGrams": 70,
"fatGrams": 25,
"eatenAt": "2025-05-29T15:48:01.806Z",
"createdAt": "2025-05-29T15:55:46.090Z"
}