Chicken Stir-Fry
- userId
-
Earnestine Dickinson @earnestine_dickinson
- name
- Chicken Stir-Fry
- kind
- dinner
- calories
- 586
- proteinGrams
- 29.6
- carbsGrams
- 39.6
- fatGrams
- 34.3
- eatenAt
- createdAt
Overview
meals / #455
Chicken Stir-Fry
#455
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/455" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/455" ); 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/455"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/455"
)
meal = res.json() Response
{
"id": 455,
"userId": 110,
"name": "Chicken Stir-Fry",
"kind": "dinner",
"calories": 586,
"proteinGrams": 29.6,
"carbsGrams": 39.6,
"fatGrams": 34.3,
"eatenAt": "2026-03-04T21:44:55.391Z",
"createdAt": "2026-03-04T21:55:36.386Z"
}