Lentil Soup
- userId
-
Leonor Corwin @leonor_corwin3
- name
- Lentil Soup
- kind
- lunch
- calories
- 636
- proteinGrams
- 55.5
- carbsGrams
- 61.8
- fatGrams
- 18.5
- eatenAt
- createdAt
Overview
meals / #869
Lentil Soup
#869
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/869" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/869" ); 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/869"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/869"
)
meal = res.json() Response
{
"id": 869,
"userId": 211,
"name": "Lentil Soup",
"kind": "lunch",
"calories": 636,
"proteinGrams": 55.5,
"carbsGrams": 61.8,
"fatGrams": 18.5,
"eatenAt": "2026-03-31T14:55:23.523Z",
"createdAt": "2026-03-31T15:22:23.199Z"
}