meals / #180
- userId
-
Myrtie Daniel @myrtie_daniel33
- name
- Shrimp and Veggies
- kind
- dinner
- calories
- 499
- proteinGrams
- 58.3
- carbsGrams
- 56.5
- fatGrams
- 4.4
- eatenAt
- createdAt
Component variants
Medium
Shrimp and Veggies
#180
Small
meals/180 Related
References
curl -sS \
"https://example-data.com/api/v1/meals/180" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/meals/180"
);
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/180"
);
const meal = (await res.json()) as Meal;import requests
res = requests.get(
"https://example-data.com/api/v1/meals/180"
)
meal = res.json() {
"id": 180,
"userId": 45,
"name": "Shrimp and Veggies",
"kind": "dinner",
"calories": 499,
"proteinGrams": 58.3,
"carbsGrams": 56.5,
"fatGrams": 4.4,
"eatenAt": "2025-08-24T06:44:41.266Z",
"createdAt": "2025-08-24T07:00:54.009Z"
}