Message #114
· 9/6/2025
Amaritudo carpo repellat averto.
messages / #114
Amaritudo carpo repellat averto.
Message #114
9/6/2025
curl -sS \
"https://example-data.com/api/v1/messages/114" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/messages/114"
);
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/114"
);
const message = (await res.json()) as Message;import requests
res = requests.get(
"https://example-data.com/api/v1/messages/114"
)
message = res.json() {
"id": 114,
"conversationId": 8,
"userId": 172,
"body": "Amaritudo carpo repellat averto.",
"isEdited": false,
"createdAt": "2025-09-06T02:57:50.242Z",
"updatedAt": "2025-09-06T02:57:50.242Z"
}