Egg White Omelette
- userId
-
Dwight Dicki-Medhurst @dwight.dicki-medhurst69
- name
- Egg White Omelette
- kind
- breakfast
- calories
- 572
- proteinGrams
- 54.8
- carbsGrams
- 76.8
- fatGrams
- 5.1
- eatenAt
- createdAt
Overview
meals / #146
Egg White Omelette
#146
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/146" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/146" ); 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/146"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/146"
)
meal = res.json() Response
{
"id": 146,
"userId": 35,
"name": "Egg White Omelette",
"kind": "breakfast",
"calories": 572,
"proteinGrams": 54.8,
"carbsGrams": 76.8,
"fatGrams": 5.1,
"eatenAt": "2025-12-01T23:54:35.921Z",
"createdAt": "2025-12-02T00:04:06.361Z"
}