Grilled Turkey Breast
- userId
-
Talon Turner @talon.turner59
- name
- Grilled Turkey Breast
- kind
- dinner
- calories
- 632
- proteinGrams
- 36.1
- carbsGrams
- 68
- fatGrams
- 23.9
- eatenAt
- createdAt
Overview
meals / #681
Grilled Turkey Breast
#681
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/681" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/681" ); 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/681"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/681"
)
meal = res.json() Response
{
"id": 681,
"userId": 166,
"name": "Grilled Turkey Breast",
"kind": "dinner",
"calories": 632,
"proteinGrams": 36.1,
"carbsGrams": 68,
"fatGrams": 23.9,
"eatenAt": "2026-04-21T19:48:25.300Z",
"createdAt": "2026-04-21T20:02:40.760Z"
}