Hard Boiled Eggs
- userId
-
Lennie Dickinson @lennie_dickinson8
- name
- Hard Boiled Eggs
- kind
- snack
- calories
- 340
- proteinGrams
- 24.5
- carbsGrams
- 47.8
- fatGrams
- 5.6
- eatenAt
- createdAt
Overview
meals / #504
Hard Boiled Eggs
#504
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/504" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/504" ); 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/504"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/504"
)
meal = res.json() Response
{
"id": 504,
"userId": 121,
"name": "Hard Boiled Eggs",
"kind": "snack",
"calories": 340,
"proteinGrams": 24.5,
"carbsGrams": 47.8,
"fatGrams": 5.6,
"eatenAt": "2026-02-20T13:55:07.626Z",
"createdAt": "2026-02-20T14:08:42.683Z"
}