Roasted Chicken
- userId
-
Colby Kovacek @colby_kovacek40
- name
- Roasted Chicken
- kind
- dinner
- calories
- 439
- proteinGrams
- 31.4
- carbsGrams
- 71.4
- fatGrams
- 3.1
- eatenAt
- createdAt
Overview
meals / #357
Roasted Chicken
#357
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/357" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/357" ); 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/357"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/357"
)
meal = res.json() Response
{
"id": 357,
"userId": 85,
"name": "Roasted Chicken",
"kind": "dinner",
"calories": 439,
"proteinGrams": 31.4,
"carbsGrams": 71.4,
"fatGrams": 3.1,
"eatenAt": "2025-06-12T20:25:48.981Z",
"createdAt": "2025-06-12T20:27:19.568Z"
}