Grilled Turkey Breast
- userId
-
Hortense Cruickshank @hortense.cruickshank65
- name
- Grilled Turkey Breast
- kind
- dinner
- calories
- 717
- proteinGrams
- 21.8
- carbsGrams
- 78.1
- fatGrams
- 35.3
- eatenAt
- createdAt
Overview
meals / #350
Grilled Turkey Breast
#350
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/350" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/350" ); 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/350"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/350"
)
meal = res.json() Response
{
"id": 350,
"userId": 83,
"name": "Grilled Turkey Breast",
"kind": "dinner",
"calories": 717,
"proteinGrams": 21.8,
"carbsGrams": 78.1,
"fatGrams": 35.3,
"eatenAt": "2025-11-30T15:11:20.189Z",
"createdAt": "2025-11-30T15:40:33.974Z"
}