Grilled Turkey Breast
- userId
-
Jaylon Conroy @jaylon_conroy22
- name
- Grilled Turkey Breast
- kind
- dinner
- calories
- 208
- proteinGrams
- 14.4
- carbsGrams
- 24.2
- fatGrams
- 5.9
- eatenAt
- createdAt
Overview
meals / #847
Grilled Turkey Breast
#847
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/847" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/847" ); 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/847"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/847"
)
meal = res.json() Response
{
"id": 847,
"userId": 205,
"name": "Grilled Turkey Breast",
"kind": "dinner",
"calories": 208,
"proteinGrams": 14.4,
"carbsGrams": 24.2,
"fatGrams": 5.9,
"eatenAt": "2025-12-21T17:16:06.165Z",
"createdAt": "2025-12-21T17:45:06.655Z"
}