Message #249
· 3/1/2026
Supra volo catena. Appositus coniuratio vinitor adficio arx ancilla curia. Suasoria ter concedo aequus capio sustineo.
Overview
messages / #249
Supra volo catena. Appositus coniuratio vinitor adficio arx ancilla curia. Suasoria ter concedo aequus capio sustineo.
Message #249
3/1/2026
Request
curl example
curl -sS \ "https://example-data.com/api/v1/messages/249" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/messages/249" ); 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/249"
);
const message = (await res.json()) as Message; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/messages/249"
)
message = res.json() Response
{
"id": 249,
"conversationId": 15,
"userId": 122,
"body": "Supra volo catena. Appositus coniuratio vinitor adficio arx ancilla curia. Suasoria ter concedo aequus capio sustineo.",
"isEdited": false,
"createdAt": "2026-03-01T01:29:34.623Z",
"updatedAt": "2026-03-01T01:29:34.623Z"
}