example-data.com
Menu
Browse docs and collections

Overview

meals / #452

Oatmeal with Berries

userId
Vida Kunde-Koepp @vida_kunde-koepp95
name
Oatmeal with Berries
kind
breakfast
calories
530
proteinGrams
19
carbsGrams
25.1
fatGrams
39.3
eatenAt
createdAt

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/meals/452" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/meals/452"
);
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/452"
);
const meal = (await res.json()) as Meal;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/meals/452"
)
meal = res.json()

Response

{
  "id": 452,
  "userId": 109,
  "name": "Oatmeal with Berries",
  "kind": "breakfast",
  "calories": 530,
  "proteinGrams": 19,
  "carbsGrams": 25.1,
  "fatGrams": 39.3,
  "eatenAt": "2025-07-24T07:24:35.139Z",
  "createdAt": "2025-07-24T07:51:59.288Z"
}