Message #160
· 12/25/2025
Cauda bonus aperio. Thesis provident summa desino caecus thermae.
messages / #160
Cauda bonus aperio. Thesis provident summa desino caecus thermae.
Message #160
12/25/2025
curl -sS \
"https://example-data.com/api/v1/messages/160" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/messages/160"
);
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/160"
);
const message = (await res.json()) as Message;import requests
res = requests.get(
"https://example-data.com/api/v1/messages/160"
)
message = res.json() {
"id": 160,
"conversationId": 10,
"userId": 228,
"body": "Cauda bonus aperio. Thesis provident summa desino caecus thermae.",
"isEdited": false,
"createdAt": "2025-12-25T21:31:49.118Z",
"updatedAt": "2025-12-25T21:31:49.118Z"
}