Message #156
· 11/30/2025
Averto cunae adsum textor officia tergeo dolor tamisium cohaero.
messages / #156
Averto cunae adsum textor officia tergeo dolor tamisium cohaero.
Message #156
11/30/2025
curl -sS \
"https://example-data.com/api/v1/messages/156" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/messages/156"
);
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/156"
);
const message = (await res.json()) as Message;import requests
res = requests.get(
"https://example-data.com/api/v1/messages/156"
)
message = res.json() {
"id": 156,
"conversationId": 10,
"userId": 68,
"body": "Averto cunae adsum textor officia tergeo dolor tamisium cohaero.",
"isEdited": false,
"createdAt": "2025-11-30T17:04:25.169Z",
"updatedAt": "2025-11-30T17:04:25.169Z"
}