Message #26
· 2/15/2026
Civitas thalassinus careo confugo. Ratione bos tremo sollers tollo venia argentum.
messages / #26
Civitas thalassinus careo confugo. Ratione bos tremo sollers tollo venia argentum.
Message #26
2/15/2026
curl -sS \
"https://example-data.com/api/v1/messages/26" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/messages/26"
);
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/26"
);
const message = (await res.json()) as Message;import requests
res = requests.get(
"https://example-data.com/api/v1/messages/26"
)
message = res.json() {
"id": 26,
"conversationId": 2,
"userId": 188,
"body": "Civitas thalassinus careo confugo. Ratione bos tremo sollers tollo venia argentum.",
"isEdited": false,
"createdAt": "2026-02-15T15:49:23.824Z",
"updatedAt": "2026-02-15T15:49:23.824Z"
}