Message #503
· 3/23/2026
Auctor cras facilis adsum coaegresco. Subiungo creo arbitro vereor curso animi expedita sollers.
Overview
messages / #503
Auctor cras facilis adsum coaegresco. Subiungo creo arbitro vereor curso animi expedita sollers.
Message #503
3/23/2026
Request
curl example
curl -sS \ "https://example-data.com/api/v1/messages/503" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/messages/503" ); 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/503"
);
const message = (await res.json()) as Message; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/messages/503"
)
message = res.json() Response
{
"id": 503,
"conversationId": 29,
"userId": 108,
"body": "Auctor cras facilis adsum coaegresco. Subiungo creo arbitro vereor curso animi expedita sollers.",
"isEdited": false,
"createdAt": "2026-03-23T13:47:28.818Z",
"updatedAt": "2026-03-23T13:47:28.818Z"
}