Message #221
· 4/17/2026
Damnatio arbitro tabernus curto speciosus decens spes.
Overview
messages / #221
Damnatio arbitro tabernus curto speciosus decens spes.
Message #221
4/17/2026
Request
curl example
curl -sS \ "https://example-data.com/api/v1/messages/221" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/messages/221" ); 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/221"
);
const message = (await res.json()) as Message; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/messages/221"
)
message = res.json() Response
{
"id": 221,
"conversationId": 13,
"userId": 193,
"body": "Damnatio arbitro tabernus curto speciosus decens spes.",
"isEdited": false,
"createdAt": "2026-04-17T04:02:30.646Z",
"updatedAt": "2026-04-17T04:02:30.646Z"
}