Message #188
· 4/30/2026
Canonicus temporibus amissio coadunatio.
messages / #188
Canonicus temporibus amissio coadunatio.
Message #188
4/30/2026
curl -sS \
"https://example-data.com/api/v1/messages/188" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/messages/188"
);
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/188"
);
const message = (await res.json()) as Message;import requests
res = requests.get(
"https://example-data.com/api/v1/messages/188"
)
message = res.json() {
"id": 188,
"conversationId": 11,
"userId": 110,
"body": "Canonicus temporibus amissio coadunatio.",
"isEdited": false,
"createdAt": "2026-04-30T11:09:09.289Z",
"updatedAt": "2026-04-30T11:09:09.289Z"
}