Grilled Turkey Breast
- userId
-
Diana Murazik @diana.murazik31
- name
- Grilled Turkey Breast
- kind
- dinner
- calories
- 726
- proteinGrams
- 39.7
- carbsGrams
- 77.1
- fatGrams
- 28.7
- eatenAt
- createdAt
Overview
meals / #522
Grilled Turkey Breast
#522
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/522" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/522" ); 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/522"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/522"
)
meal = res.json() Response
{
"id": 522,
"userId": 125,
"name": "Grilled Turkey Breast",
"kind": "dinner",
"calories": 726,
"proteinGrams": 39.7,
"carbsGrams": 77.1,
"fatGrams": 28.7,
"eatenAt": "2026-05-16T19:17:26.471Z",
"createdAt": "2026-05-16T19:41:24.984Z"
}