Roasted Chicken
- userId
-
Jermain Kshlerin @jermain_kshlerin51
- name
- Roasted Chicken
- kind
- dinner
- calories
- 326
- proteinGrams
- 24.7
- carbsGrams
- 28.6
- fatGrams
- 12.5
- eatenAt
- createdAt
Overview
meals / #429
Roasted Chicken
#429
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/429" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/429" ); 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/429"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/429"
)
meal = res.json() Response
{
"id": 429,
"userId": 104,
"name": "Roasted Chicken",
"kind": "dinner",
"calories": 326,
"proteinGrams": 24.7,
"carbsGrams": 28.6,
"fatGrams": 12.5,
"eatenAt": "2025-06-09T20:11:14.569Z",
"createdAt": "2025-06-09T20:18:50.316Z"
}