Message #538
· 4/27/2026
Comedo correptius vivo advoco arca deleo dens. Arca surgo ascit arbor cohors.
Overview
messages / #538
Comedo correptius vivo advoco arca deleo dens. Arca surgo ascit arbor cohors.
Message #538
4/27/2026
Request
curl example
curl -sS \ "https://example-data.com/api/v1/messages/538" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/messages/538" ); 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/538"
);
const message = (await res.json()) as Message; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/messages/538"
)
message = res.json() Response
{
"id": 538,
"conversationId": 31,
"userId": 43,
"body": "Comedo correptius vivo advoco arca deleo dens. Arca surgo ascit arbor cohors.",
"isEdited": false,
"createdAt": "2026-04-27T08:03:43.334Z",
"updatedAt": "2026-04-27T08:03:43.334Z"
}