example-data.com

meals / #154

userId
Lenny Howe @lenny.howe
name
Grilled Steak
kind
dinner
calories
659
proteinGrams
36.9
carbsGrams
69.8
fatGrams
25.8
eatenAt
createdAt

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/meals/154" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/meals/154"
);
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/154"
);
const meal = (await res.json()) as Meal;
import requests

res = requests.get(
    "https://example-data.com/api/v1/meals/154"
)
meal = res.json()
{
  "id": 154,
  "userId": 37,
  "name": "Grilled Steak",
  "kind": "dinner",
  "calories": 659,
  "proteinGrams": 36.9,
  "carbsGrams": 69.8,
  "fatGrams": 25.8,
  "eatenAt": "2025-06-26T11:24:55.481Z",
  "createdAt": "2025-06-26T11:25:33.469Z"
}
Draftbit