Oatmeal with Berries
- userId
-
Era Mitchell @era.mitchell21
- name
- Oatmeal with Berries
- kind
- breakfast
- calories
- 781
- proteinGrams
- 51.9
- carbsGrams
- 71.8
- fatGrams
- 31.8
- eatenAt
- createdAt
Overview
meals / #994
Oatmeal with Berries
#994
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/994" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/994" ); const meal = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/meals.d.ts https://example-data.com/types/meals.d.ts
import type { Meal } from "./types/meals";
const res = await fetch(
"https://example-data.com/api/v1/meals/994"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/994"
)
meal = res.json() Response
{
"id": 994,
"userId": 243,
"name": "Oatmeal with Berries",
"kind": "breakfast",
"calories": 781,
"proteinGrams": 51.9,
"carbsGrams": 71.8,
"fatGrams": 31.8,
"eatenAt": "2026-04-03T18:08:08.317Z",
"createdAt": "2026-04-03T18:15:39.039Z"
}