Message #239
· 2/2/2026
Comes spero blandior cunctatio deduco tardus alienus cribro.
messages / #239
Comes spero blandior cunctatio deduco tardus alienus cribro.
Message #239
2/2/2026
curl -sS \
"https://example-data.com/api/v1/messages/239" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/messages/239"
);
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/239"
);
const message = (await res.json()) as Message;import requests
res = requests.get(
"https://example-data.com/api/v1/messages/239"
)
message = res.json() {
"id": 239,
"conversationId": 15,
"userId": 122,
"body": "Comes spero blandior cunctatio deduco tardus alienus cribro.",
"isEdited": true,
"createdAt": "2026-02-02T14:19:55.931Z",
"updatedAt": "2026-04-04T14:38:17.817Z"
}