Grilled Steak
- userId
-
Lilla Koss @lilla.koss
- name
- Grilled Steak
- kind
- dinner
- calories
- 340
- proteinGrams
- 6
- carbsGrams
- 7.2
- fatGrams
- 31.9
- eatenAt
- createdAt
Overview
meals / #245
Grilled Steak
#245
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/245" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/245" ); 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/245"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/245"
)
meal = res.json() Response
{
"id": 245,
"userId": 59,
"name": "Grilled Steak",
"kind": "dinner",
"calories": 340,
"proteinGrams": 6,
"carbsGrams": 7.2,
"fatGrams": 31.9,
"eatenAt": "2026-01-09T11:14:13.489Z",
"createdAt": "2026-01-09T11:22:50.313Z"
}