Egg White Omelette
- userId
-
Cassidy Price-Schimmel @cassidy.price-schimmel
- name
- Egg White Omelette
- kind
- breakfast
- calories
- 598
- proteinGrams
- 38.9
- carbsGrams
- 60.6
- fatGrams
- 22.2
- eatenAt
- createdAt
Overview
meals / #933
Egg White Omelette
#933
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/933" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/933" ); 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/933"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/933"
)
meal = res.json() Response
{
"id": 933,
"userId": 227,
"name": "Egg White Omelette",
"kind": "breakfast",
"calories": 598,
"proteinGrams": 38.9,
"carbsGrams": 60.6,
"fatGrams": 22.2,
"eatenAt": "2025-08-18T03:44:31.106Z",
"createdAt": "2025-08-18T03:46:02.245Z"
}