Message #888
· 4/5/2026
Stella desolo accedo curto cohors saepe necessitatibus arma suscipit in. Alveus paens supra.
Overview
messages / #888
Stella desolo accedo curto cohors saepe necessitatibus arma suscipit in. Alveus paens supra.
Message #888
4/5/2026
Request
curl example
curl -sS \ "https://example-data.com/api/v1/messages/888" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/messages/888" ); 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/888"
);
const message = (await res.json()) as Message; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/messages/888"
)
message = res.json() Response
{
"id": 888,
"conversationId": 48,
"userId": 113,
"body": "Stella desolo accedo curto cohors saepe necessitatibus arma suscipit in. Alveus paens supra.",
"isEdited": false,
"createdAt": "2026-04-05T18:57:01.314Z",
"updatedAt": "2026-04-05T18:57:01.314Z"
}