example-data.com

meals / #169

userId
Trace Witting-Stamm @trace_witting-stamm17
name
Tuna Wrap
kind
lunch
calories
446
proteinGrams
47.5
carbsGrams
48.8
fatGrams
6.7
eatenAt
createdAt

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/meals/169" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/meals/169"
);
const meal = await res.json();
import type { Meal } from "https://example-data.com/types/meals.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/meals/169"
);
const meal = (await res.json()) as Meal;
import requests

res = requests.get(
    "https://example-data.com/api/v1/meals/169"
)
meal = res.json()
{
  "id": 169,
  "userId": 42,
  "name": "Tuna Wrap",
  "kind": "lunch",
  "calories": 446,
  "proteinGrams": 47.5,
  "carbsGrams": 48.8,
  "fatGrams": 6.7,
  "eatenAt": "2025-10-23T16:38:29.064Z",
  "createdAt": "2025-10-23T16:43:00.046Z"
}
Draftbit