Oatmeal with Berries
- userId
-
Americo Hoppe @americo_hoppe57
- name
- Oatmeal with Berries
- kind
- breakfast
- calories
- 451
- proteinGrams
- 42.3
- carbsGrams
- 7.6
- fatGrams
- 27.9
- eatenAt
- createdAt
Overview
meals / #724
Oatmeal with Berries
#724
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/724" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/724" ); 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/724"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/724"
)
meal = res.json() Response
{
"id": 724,
"userId": 177,
"name": "Oatmeal with Berries",
"kind": "breakfast",
"calories": 451,
"proteinGrams": 42.3,
"carbsGrams": 7.6,
"fatGrams": 27.9,
"eatenAt": "2025-10-17T11:46:16.848Z",
"createdAt": "2025-10-17T12:13:14.567Z"
}