Grilled Turkey Breast
- userId
-
Virginie O'Connell @virginie.oconnell55
- name
- Grilled Turkey Breast
- kind
- dinner
- calories
- 863
- proteinGrams
- 59.3
- carbsGrams
- 75.1
- fatGrams
- 36.1
- eatenAt
- createdAt
Overview
meals / #287
Grilled Turkey Breast
#287
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/287" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/287" ); 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/287"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/287"
)
meal = res.json() Response
{
"id": 287,
"userId": 70,
"name": "Grilled Turkey Breast",
"kind": "dinner",
"calories": 863,
"proteinGrams": 59.3,
"carbsGrams": 75.1,
"fatGrams": 36.1,
"eatenAt": "2026-03-31T00:39:32.827Z",
"createdAt": "2026-03-31T00:46:19.016Z"
}