Quinoa Bowl
- userId
-
Rosina Larkin @rosina.larkin75
- name
- Quinoa Bowl
- kind
- lunch
- calories
- 589
- proteinGrams
- 31.5
- carbsGrams
- 74.1
- fatGrams
- 18.5
- eatenAt
- createdAt
Overview
meals / #427
Quinoa Bowl
#427
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/427" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/427" ); 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/427"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/427"
)
meal = res.json() Response
{
"id": 427,
"userId": 103,
"name": "Quinoa Bowl",
"kind": "lunch",
"calories": 589,
"proteinGrams": 31.5,
"carbsGrams": 74.1,
"fatGrams": 18.5,
"eatenAt": "2026-03-20T08:57:43.846Z",
"createdAt": "2026-03-20T09:13:39.512Z"
}