Message #163
· 1/17/2026
Circumvenio thorax verto thesaurus copia rerum. Thermae quaerat quod copiose vado damnatio.
messages / #163
Circumvenio thorax verto thesaurus copia rerum. Thermae quaerat quod copiose vado damnatio.
Message #163
1/17/2026
curl -sS \
"https://example-data.com/api/v1/messages/163" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/messages/163"
);
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/163"
);
const message = (await res.json()) as Message;import requests
res = requests.get(
"https://example-data.com/api/v1/messages/163"
)
message = res.json() {
"id": 163,
"conversationId": 10,
"userId": 228,
"body": "Circumvenio thorax verto thesaurus copia rerum. Thermae quaerat quod copiose vado damnatio.",
"isEdited": false,
"createdAt": "2026-01-17T14:43:26.258Z",
"updatedAt": "2026-01-17T14:43:26.258Z"
}