Grilled Turkey Breast
- userId
-
Leonel Hamill @leonel_hamill33
- name
- Grilled Turkey Breast
- kind
- dinner
- calories
- 421
- proteinGrams
- 28.9
- carbsGrams
- 46.2
- fatGrams
- 13.4
- eatenAt
- createdAt
Overview
meals / #47
Grilled Turkey Breast
#47
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/47" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/47" ); 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/47"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/47"
)
meal = res.json() Response
{
"id": 47,
"userId": 11,
"name": "Grilled Turkey Breast",
"kind": "dinner",
"calories": 421,
"proteinGrams": 28.9,
"carbsGrams": 46.2,
"fatGrams": 13.4,
"eatenAt": "2026-02-21T15:15:20.105Z",
"createdAt": "2026-02-21T15:17:13.517Z"
}