Message #3104
· 10/25/2025
Teneo videlicet inventore. Apparatus cado creber aetas arbitro textilis attero decumbo ago. Despecto adinventitias cetera aegrotatio.
Overview
messages / #3104
Teneo videlicet inventore. Apparatus cado creber aetas arbitro textilis attero decumbo ago. Despecto adinventitias cetera aegrotatio.
Message #3104
10/25/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/messages/3104" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/messages/3104" ); const message = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/messages.d.ts https://example-data.com/types/messages.d.ts
import type { Message } from "./types/messages";
const res = await fetch(
"https://example-data.com/api/v1/messages/3104"
);
const message = (await res.json()) as Message; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/messages/3104"
)
message = res.json() Response
{
"id": 3104,
"conversationId": 170,
"userId": 194,
"body": "Teneo videlicet inventore. Apparatus cado creber aetas arbitro textilis attero decumbo ago. Despecto adinventitias cetera aegrotatio.",
"isEdited": false,
"createdAt": "2025-10-25T03:46:25.075Z",
"updatedAt": "2025-10-25T03:46:25.075Z"
}