Egg White Omelette
- userId
-
D'angelo Kling @dangelo_kling6
- name
- Egg White Omelette
- kind
- breakfast
- calories
- 365
- proteinGrams
- 43.8
- carbsGrams
- 13.3
- fatGrams
- 15.2
- eatenAt
- createdAt
Overview
meals / #777
Egg White Omelette
#777
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/777" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/777" ); 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/777"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/777"
)
meal = res.json() Response
{
"id": 777,
"userId": 188,
"name": "Egg White Omelette",
"kind": "breakfast",
"calories": 365,
"proteinGrams": 43.8,
"carbsGrams": 13.3,
"fatGrams": 15.2,
"eatenAt": "2026-04-18T20:30:10.566Z",
"createdAt": "2026-04-18T20:34:34.942Z"
}