Grilled Steak
- userId
-
Lenny Howe @lenny.howe
- name
- Grilled Steak
- kind
- dinner
- calories
- 659
- proteinGrams
- 36.9
- carbsGrams
- 69.8
- fatGrams
- 25.8
- eatenAt
- createdAt
Overview
meals / #154
Grilled Steak
#154
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/154" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/154" ); 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/154"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/154"
)
meal = res.json() Response
{
"id": 154,
"userId": 37,
"name": "Grilled Steak",
"kind": "dinner",
"calories": 659,
"proteinGrams": 36.9,
"carbsGrams": 69.8,
"fatGrams": 25.8,
"eatenAt": "2025-06-26T11:24:55.481Z",
"createdAt": "2025-06-26T11:25:33.469Z"
}