Quinoa Bowl
- userId
-
Kathleen Lynch @kathleen_lynch1
- name
- Quinoa Bowl
- kind
- lunch
- calories
- 451
- proteinGrams
- 53.3
- carbsGrams
- 12.1
- fatGrams
- 21
- eatenAt
- createdAt
Overview
meals / #581
Quinoa Bowl
#581
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/581" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/581" ); 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/581"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/581"
)
meal = res.json() Response
{
"id": 581,
"userId": 139,
"name": "Quinoa Bowl",
"kind": "lunch",
"calories": 451,
"proteinGrams": 53.3,
"carbsGrams": 12.1,
"fatGrams": 21,
"eatenAt": "2025-11-24T23:48:36.956Z",
"createdAt": "2025-11-24T23:56:32.395Z"
}