Chicken Stir-Fry
- userId
-
Daisy Kuhic @daisy_kuhic24
- name
- Chicken Stir-Fry
- kind
- dinner
- calories
- 630
- proteinGrams
- 50
- carbsGrams
- 56.9
- fatGrams
- 22.5
- eatenAt
- createdAt
Overview
meals / #708
Chicken Stir-Fry
#708
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/708" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/708" ); 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/708"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/708"
)
meal = res.json() Response
{
"id": 708,
"userId": 172,
"name": "Chicken Stir-Fry",
"kind": "dinner",
"calories": 630,
"proteinGrams": 50,
"carbsGrams": 56.9,
"fatGrams": 22.5,
"eatenAt": "2025-08-27T01:52:39.415Z",
"createdAt": "2025-08-27T01:58:01.469Z"
}