Quinoa Bowl
- userId
-
Mckenna Hegmann-Price @mckenna.hegmann-price77
- name
- Quinoa Bowl
- kind
- lunch
- calories
- 655
- proteinGrams
- 34
- carbsGrams
- 55.7
- fatGrams
- 32.9
- eatenAt
- createdAt
Overview
meals / #257
Quinoa Bowl
#257
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/257" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/257" ); 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/257"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/257"
)
meal = res.json() Response
{
"id": 257,
"userId": 62,
"name": "Quinoa Bowl",
"kind": "lunch",
"calories": 655,
"proteinGrams": 34,
"carbsGrams": 55.7,
"fatGrams": 32.9,
"eatenAt": "2025-09-13T07:34:12.921Z",
"createdAt": "2025-09-13T07:41:44.744Z"
}