Message #1921
· 12/13/2025
Vesica sustineo ait arca cicuta.
Overview
messages / #1921
Vesica sustineo ait arca cicuta.
Message #1921
12/13/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/messages/1921" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/messages/1921" ); 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/1921"
);
const message = (await res.json()) as Message; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/messages/1921"
)
message = res.json() Response
{
"id": 1921,
"conversationId": 106,
"userId": 98,
"body": "Vesica sustineo ait arca cicuta.",
"isEdited": false,
"createdAt": "2025-12-13T00:01:41.320Z",
"updatedAt": "2025-12-13T00:01:41.320Z"
}