Quinoa Bowl
- userId
-
Casimir Smitham @casimir_smitham35
- name
- Quinoa Bowl
- kind
- lunch
- calories
- 733
- proteinGrams
- 57.1
- carbsGrams
- 70
- fatGrams
- 25
- eatenAt
- createdAt
Overview
meals / #67
Quinoa Bowl
#67
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/67" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/67" ); 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/67"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/67"
)
meal = res.json() Response
{
"id": 67,
"userId": 16,
"name": "Quinoa Bowl",
"kind": "lunch",
"calories": 733,
"proteinGrams": 57.1,
"carbsGrams": 70,
"fatGrams": 25,
"eatenAt": "2025-05-29T15:48:01.806Z",
"createdAt": "2025-05-29T15:55:46.090Z"
}