Message #616
· 4/14/2026
Tricesimus templum comis aedificium harum amita color ut solitudo amo. Anser causa cura vere tibi inventore.
Overview
messages / #616
Tricesimus templum comis aedificium harum amita color ut solitudo amo. Anser causa cura vere tibi inventore.
Message #616
4/14/2026
Request
curl example
curl -sS \ "https://example-data.com/api/v1/messages/616" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/messages/616" ); 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/616"
);
const message = (await res.json()) as Message; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/messages/616"
)
message = res.json() Response
{
"id": 616,
"conversationId": 34,
"userId": 100,
"body": "Tricesimus templum comis aedificium harum amita color ut solitudo amo. Anser causa cura vere tibi inventore.",
"isEdited": false,
"createdAt": "2026-04-14T10:50:06.603Z",
"updatedAt": "2026-04-14T10:50:06.603Z"
}