Quinoa Bowl
- userId
-
Ryan Conroy @ryan_conroy
- name
- Quinoa Bowl
- kind
- lunch
- calories
- 581
- proteinGrams
- 14
- carbsGrams
- 68.1
- fatGrams
- 28.1
- eatenAt
- createdAt
Overview
meals / #300
Quinoa Bowl
#300
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/300" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/300" ); 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/300"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/300"
)
meal = res.json() Response
{
"id": 300,
"userId": 73,
"name": "Quinoa Bowl",
"kind": "lunch",
"calories": 581,
"proteinGrams": 14,
"carbsGrams": 68.1,
"fatGrams": 28.1,
"eatenAt": "2025-08-23T00:54:16.729Z",
"createdAt": "2025-08-23T01:00:26.783Z"
}