Chicken Stir-Fry
- userId
-
Lavonne Schmidt @lavonne.schmidt95
- name
- Chicken Stir-Fry
- kind
- dinner
- calories
- 297
- proteinGrams
- 23.8
- carbsGrams
- 32.8
- fatGrams
- 7.8
- eatenAt
- createdAt
Overview
meals / #796
Chicken Stir-Fry
#796
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/796" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/796" ); 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/796"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/796"
)
meal = res.json() Response
{
"id": 796,
"userId": 192,
"name": "Chicken Stir-Fry",
"kind": "dinner",
"calories": 297,
"proteinGrams": 23.8,
"carbsGrams": 32.8,
"fatGrams": 7.8,
"eatenAt": "2025-12-05T01:44:33.549Z",
"createdAt": "2025-12-05T01:56:53.888Z"
}