Message #1430
· 2/28/2026
Aegrus vulgus blandior alo sonitus. Annus sub derelinquo capitulus earum. Validus vivo arbustum alveus subiungo auditor ratione statim.
Overview
messages / #1430
Aegrus vulgus blandior alo sonitus. Annus sub derelinquo capitulus earum. Validus vivo arbustum alveus subiungo auditor ratione statim.
Message #1430
2/28/2026
Request
curl example
curl -sS \ "https://example-data.com/api/v1/messages/1430" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/messages/1430" ); 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/1430"
);
const message = (await res.json()) as Message; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/messages/1430"
)
message = res.json() Response
{
"id": 1430,
"conversationId": 79,
"userId": 222,
"body": "Aegrus vulgus blandior alo sonitus. Annus sub derelinquo capitulus earum. Validus vivo arbustum alveus subiungo auditor ratione statim.",
"isEdited": true,
"createdAt": "2026-02-28T06:25:38.012Z",
"updatedAt": "2026-03-29T12:01:00.466Z"
}