Egg White Omelette
- userId
-
Wilton Dietrich @wilton.dietrich23
- name
- Egg White Omelette
- kind
- breakfast
- calories
- 687
- proteinGrams
- 59
- carbsGrams
- 68.9
- fatGrams
- 19.5
- eatenAt
- createdAt
Overview
meals / #783
Egg White Omelette
#783
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/783" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/783" ); 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/783"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/783"
)
meal = res.json() Response
{
"id": 783,
"userId": 190,
"name": "Egg White Omelette",
"kind": "breakfast",
"calories": 687,
"proteinGrams": 59,
"carbsGrams": 68.9,
"fatGrams": 19.5,
"eatenAt": "2026-01-12T20:37:14.288Z",
"createdAt": "2026-01-12T20:45:23.897Z"
}