Chicken Stir-Fry
- userId
-
Marta Harvey @marta.harvey68
- name
- Chicken Stir-Fry
- kind
- dinner
- calories
- 473
- proteinGrams
- 28.7
- carbsGrams
- 35.3
- fatGrams
- 24.1
- eatenAt
- createdAt
Overview
meals / #465
Chicken Stir-Fry
#465
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/465" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/465" ); 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/465"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/465"
)
meal = res.json() Response
{
"id": 465,
"userId": 112,
"name": "Chicken Stir-Fry",
"kind": "dinner",
"calories": 473,
"proteinGrams": 28.7,
"carbsGrams": 35.3,
"fatGrams": 24.1,
"eatenAt": "2026-03-16T03:26:55.128Z",
"createdAt": "2026-03-16T03:32:13.648Z"
}