Grilled Turkey Breast
- userId
-
Selina Flatley @selina_flatley
- name
- Grilled Turkey Breast
- kind
- dinner
- calories
- 227
- proteinGrams
- 14.9
- carbsGrams
- 33.2
- fatGrams
- 3.8
- eatenAt
- createdAt
Overview
meals / #799
Grilled Turkey Breast
#799
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/799" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/799" ); 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/799"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/799"
)
meal = res.json() Response
{
"id": 799,
"userId": 193,
"name": "Grilled Turkey Breast",
"kind": "dinner",
"calories": 227,
"proteinGrams": 14.9,
"carbsGrams": 33.2,
"fatGrams": 3.8,
"eatenAt": "2025-06-06T03:41:14.129Z",
"createdAt": "2025-06-06T03:52:43.826Z"
}