Chicken Stir-Fry
- userId
-
Maximus Bosco @maximus_bosco
- name
- Chicken Stir-Fry
- kind
- dinner
- calories
- 655
- proteinGrams
- 27.6
- carbsGrams
- 47.7
- fatGrams
- 39.3
- eatenAt
- createdAt
Overview
meals / #533
Chicken Stir-Fry
#533
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/533" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/533" ); 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/533"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/533"
)
meal = res.json() Response
{
"id": 533,
"userId": 128,
"name": "Chicken Stir-Fry",
"kind": "dinner",
"calories": 655,
"proteinGrams": 27.6,
"carbsGrams": 47.7,
"fatGrams": 39.3,
"eatenAt": "2026-03-01T13:33:13.292Z",
"createdAt": "2026-03-01T13:55:39.144Z"
}