Grilled Turkey Breast
- userId
-
Beau Stiedemann @beau.stiedemann
- name
- Grilled Turkey Breast
- kind
- dinner
- calories
- 488
- proteinGrams
- 28.2
- carbsGrams
- 23.3
- fatGrams
- 31.3
- eatenAt
- createdAt
Overview
meals / #267
Grilled Turkey Breast
#267
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/267" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/267" ); 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/267"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/267"
)
meal = res.json() Response
{
"id": 267,
"userId": 64,
"name": "Grilled Turkey Breast",
"kind": "dinner",
"calories": 488,
"proteinGrams": 28.2,
"carbsGrams": 23.3,
"fatGrams": 31.3,
"eatenAt": "2025-12-02T04:10:22.580Z",
"createdAt": "2025-12-02T04:22:14.091Z"
}