Message #226
· 3/15/2026
Eos calcar tabula coadunatio. Barba solio adamo sapiente illo delibero derideo comptus alias.
Overview
messages / #226
Eos calcar tabula coadunatio. Barba solio adamo sapiente illo delibero derideo comptus alias.
Message #226
3/15/2026
Request
curl example
curl -sS \ "https://example-data.com/api/v1/messages/226" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/messages/226" ); const message = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/messages.d.ts https://example-data.com/types/messages.d.ts
import type { Message } from "./types/messages";
const res = await fetch(
"https://example-data.com/api/v1/messages/226"
);
const message = (await res.json()) as Message; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/messages/226"
)
message = res.json() Response
{
"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"
}