Message #128
· 5/19/2026
Damnatio arca adeptio.
messages / #128
Damnatio arca adeptio.
Message #128
5/19/2026
curl -sS \
"https://example-data.com/api/v1/messages/128" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/messages/128"
);
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/128"
);
const message = (await res.json()) as Message;import requests
res = requests.get(
"https://example-data.com/api/v1/messages/128"
)
message = res.json() {
"id": 128,
"conversationId": 8,
"userId": 172,
"body": "Damnatio arca adeptio.",
"isEdited": false,
"createdAt": "2026-05-19T14:12:02.601Z",
"updatedAt": "2026-05-19T14:12:02.601Z"
}