Message #64
· 5/7/2026
Alo cunctatio crebro.
messages / #64
Alo cunctatio crebro.
Message #64
5/7/2026
curl -sS \
"https://example-data.com/api/v1/messages/64" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/messages/64"
);
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/64"
);
const message = (await res.json()) as Message;import requests
res = requests.get(
"https://example-data.com/api/v1/messages/64"
)
message = res.json() {
"id": 64,
"conversationId": 5,
"userId": 175,
"body": "Alo cunctatio crebro.",
"isEdited": false,
"createdAt": "2026-05-07T22:57:40.263Z",
"updatedAt": "2026-05-07T22:57:40.263Z"
}