Message #374
· 4/17/2026
Beatae curia auditor. Depulso aeneus absconditus.
Overview
messages / #374
Beatae curia auditor. Depulso aeneus absconditus.
Message #374
4/17/2026
Request
curl example
curl -sS \ "https://example-data.com/api/v1/messages/374" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/messages/374" ); 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/374"
);
const message = (await res.json()) as Message; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/messages/374"
)
message = res.json() Response
{
"id": 374,
"conversationId": 21,
"userId": 128,
"body": "Beatae curia auditor. Depulso aeneus absconditus.",
"isEdited": true,
"createdAt": "2026-04-17T05:09:49.516Z",
"updatedAt": "2026-04-30T16:13:34.156Z"
}