Chicken Stir-Fry
- userId
-
Clyde Bernier-Gleason @clyde_bernier-gleason6
- name
- Chicken Stir-Fry
- kind
- dinner
- calories
- 678
- proteinGrams
- 32.5
- carbsGrams
- 52.4
- fatGrams
- 37.6
- eatenAt
- createdAt
Overview
meals / #598
Chicken Stir-Fry
#598
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/598" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/598" ); 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/598"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/598"
)
meal = res.json() Response
{
"id": 598,
"userId": 143,
"name": "Chicken Stir-Fry",
"kind": "dinner",
"calories": 678,
"proteinGrams": 32.5,
"carbsGrams": 52.4,
"fatGrams": 37.6,
"eatenAt": "2025-11-20T01:44:05.125Z",
"createdAt": "2025-11-20T01:46:38.983Z"
}