Chicken Stir-Fry
- userId
-
Mateo Gerlach @mateo.gerlach
- name
- Chicken Stir-Fry
- kind
- dinner
- calories
- 430
- proteinGrams
- 6.7
- carbsGrams
- 47.2
- fatGrams
- 23.8
- eatenAt
- createdAt
Overview
meals / #338
Chicken Stir-Fry
#338
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/338" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/338" ); 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/338"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/338"
)
meal = res.json() Response
{
"id": 338,
"userId": 81,
"name": "Chicken Stir-Fry",
"kind": "dinner",
"calories": 430,
"proteinGrams": 6.7,
"carbsGrams": 47.2,
"fatGrams": 23.8,
"eatenAt": "2026-01-31T17:30:57.535Z",
"createdAt": "2026-01-31T17:40:15.937Z"
}