Egg White Omelette
- userId
-
Daisy Kuhic @daisy_kuhic24
- name
- Egg White Omelette
- kind
- breakfast
- calories
- 541
- proteinGrams
- 54.9
- carbsGrams
- 36.3
- fatGrams
- 19.6
- eatenAt
- createdAt
Overview
meals / #706
Egg White Omelette
#706
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/706" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/706" ); 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/706"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/706"
)
meal = res.json() Response
{
"id": 706,
"userId": 172,
"name": "Egg White Omelette",
"kind": "breakfast",
"calories": 541,
"proteinGrams": 54.9,
"carbsGrams": 36.3,
"fatGrams": 19.6,
"eatenAt": "2025-11-26T13:17:33.997Z",
"createdAt": "2025-11-26T13:20:19.030Z"
}