Shrimp and Veggies
- userId
-
Elvis Littel-Vandervort @elvis.littel-vandervort28
- name
- Shrimp and Veggies
- kind
- dinner
- calories
- 748
- proteinGrams
- 40.9
- carbsGrams
- 66
- fatGrams
- 35.6
- eatenAt
- createdAt
Overview
meals / #718
Shrimp and Veggies
#718
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/718" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/718" ); 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/718"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/718"
)
meal = res.json() Response
{
"id": 718,
"userId": 175,
"name": "Shrimp and Veggies",
"kind": "dinner",
"calories": 748,
"proteinGrams": 40.9,
"carbsGrams": 66,
"fatGrams": 35.6,
"eatenAt": "2025-08-18T06:57:43.409Z",
"createdAt": "2025-08-18T07:24:42.534Z"
}