Egg White Omelette
- userId
-
Gudrun Brakus @gudrun_brakus
- name
- Egg White Omelette
- kind
- breakfast
- calories
- 512
- proteinGrams
- 58.3
- carbsGrams
- 24.4
- fatGrams
- 20.1
- eatenAt
- createdAt
Overview
meals / #948
Egg White Omelette
#948
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/948" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/948" ); 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/948"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/948"
)
meal = res.json() Response
{
"id": 948,
"userId": 230,
"name": "Egg White Omelette",
"kind": "breakfast",
"calories": 512,
"proteinGrams": 58.3,
"carbsGrams": 24.4,
"fatGrams": 20.1,
"eatenAt": "2025-07-19T00:51:29.248Z",
"createdAt": "2025-07-19T01:05:34.287Z"
}