example-data.com
Menu
Browse docs and collections

Overview

meals / #623

Brown Rice and Veggies

userId
Jonathan Howe @jonathan_howe77
name
Brown Rice and Veggies
kind
lunch
calories
699
proteinGrams
11.4
carbsGrams
78.7
fatGrams
37.6
eatenAt
createdAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 623,
  "userId": 150,
  "name": "Brown Rice and Veggies",
  "kind": "lunch",
  "calories": 699,
  "proteinGrams": 11.4,
  "carbsGrams": 78.7,
  "fatGrams": 37.6,
  "eatenAt": "2025-06-11T01:08:46.107Z",
  "createdAt": "2025-06-11T01:17:16.864Z"
}