Grilled Turkey Breast
- userId
-
Jameson Considine @jameson.considine1
- name
- Grilled Turkey Breast
- kind
- dinner
- calories
- 576
- proteinGrams
- 45.1
- carbsGrams
- 64.7
- fatGrams
- 15.2
- eatenAt
- createdAt
Overview
meals / #966
Grilled Turkey Breast
#966
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/966" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/966" ); 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/966"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/966"
)
meal = res.json() Response
{
"id": 966,
"userId": 236,
"name": "Grilled Turkey Breast",
"kind": "dinner",
"calories": 576,
"proteinGrams": 45.1,
"carbsGrams": 64.7,
"fatGrams": 15.2,
"eatenAt": "2026-01-29T21:06:39.773Z",
"createdAt": "2026-01-29T21:35:52.662Z"
}