Message #1780
· 1/7/2026
Damnatio una comparo sui at acer. Aranea averto vito virgo depromo auditor cumque vivo canis.
Overview
messages / #1780
Damnatio una comparo sui at acer. Aranea averto vito virgo depromo auditor cumque vivo canis.
Message #1780
1/7/2026
Request
curl example
curl -sS \ "https://example-data.com/api/v1/messages/1780" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/messages/1780" ); 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/1780"
);
const message = (await res.json()) as Message; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/messages/1780"
)
message = res.json() Response
{
"id": 1780,
"conversationId": 101,
"userId": 121,
"body": "Damnatio una comparo sui at acer. Aranea averto vito virgo depromo auditor cumque vivo canis.",
"isEdited": false,
"createdAt": "2026-01-07T00:49:57.644Z",
"updatedAt": "2026-01-07T00:49:57.644Z"
}