Shrimp and Veggies
- userId
-
Brad Wisoky @brad.wisoky41
- name
- Shrimp and Veggies
- kind
- dinner
- calories
- 630
- proteinGrams
- 55.3
- carbsGrams
- 64.5
- fatGrams
- 16.8
- eatenAt
- createdAt
Overview
meals / #636
Shrimp and Veggies
#636
Request
curl example
curl -sS \ "https://example-data.com/api/v1/meals/636" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/meals/636" ); 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/636"
);
const meal = (await res.json()) as Meal; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/meals/636"
)
meal = res.json() Response
{
"id": 636,
"userId": 154,
"name": "Shrimp and Veggies",
"kind": "dinner",
"calories": 630,
"proteinGrams": 55.3,
"carbsGrams": 64.5,
"fatGrams": 16.8,
"eatenAt": "2025-05-27T16:41:49.038Z",
"createdAt": "2025-05-27T17:00:45.779Z"
}