Quinoa Bowl
- userId
-
Alexa Rippin @alexa_rippin25
- name
- Quinoa Bowl
- kind
- lunch
- calories
- 422
- proteinGrams
- 15.5
- carbsGrams
- 35.3
- fatGrams
- 24.3
- eatenAt
- createdAt
Overview
meals / #963
Quinoa Bowl
#963
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/963" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/963" ); 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/963"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/963"
)
meal = res.json() Response
{
"id": 963,
"userId": 235,
"name": "Quinoa Bowl",
"kind": "lunch",
"calories": 422,
"proteinGrams": 15.5,
"carbsGrams": 35.3,
"fatGrams": 24.3,
"eatenAt": "2025-10-09T06:21:42.158Z",
"createdAt": "2025-10-09T06:45:34.304Z"
}