example-data.com

messages / #226

Message #226

· 3/15/2026

Eos calcar tabula coadunatio. Barba solio adamo sapiente illo delibero derideo comptus alias.

Component variants

Related

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

const res = await fetch(
  "https://example-data.com/api/v1/messages/226"
);
const message = (await res.json()) as Message;
import requests

res = requests.get(
    "https://example-data.com/api/v1/messages/226"
)
message = res.json()
{
  "id": 226,
  "conversationId": 14,
  "userId": 233,
  "body": "Eos calcar tabula coadunatio. Barba solio adamo sapiente illo delibero derideo comptus alias.",
  "isEdited": false,
  "createdAt": "2026-03-15T08:45:37.619Z",
  "updatedAt": "2026-03-15T08:45:37.619Z"
}
Draftbit