Hard Boiled Eggs
- userId
-
Nikko Kuhlman @nikko_kuhlman
- name
- Hard Boiled Eggs
- kind
- snack
- calories
- 437
- proteinGrams
- 47.4
- carbsGrams
- 54.3
- fatGrams
- 3.4
- eatenAt
- createdAt
Overview
meals / #511
Hard Boiled Eggs
#511
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/511" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/511" ); 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/511"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/511"
)
meal = res.json() Response
{
"id": 511,
"userId": 122,
"name": "Hard Boiled Eggs",
"kind": "snack",
"calories": 437,
"proteinGrams": 47.4,
"carbsGrams": 54.3,
"fatGrams": 3.4,
"eatenAt": "2025-06-28T08:28:23.354Z",
"createdAt": "2025-06-28T08:29:13.007Z"
}