Message #269
· 10/18/2025
Coruscus solutio tergeo quis. Clam summa soluta.
Overview
messages / #269
Coruscus solutio tergeo quis. Clam summa soluta.
Message #269
10/18/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/messages/269" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/messages/269" ); 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/269"
);
const message = (await res.json()) as Message; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/messages/269"
)
message = res.json() Response
{
"id": 269,
"conversationId": 16,
"userId": 60,
"body": "Coruscus solutio tergeo quis. Clam summa soluta.",
"isEdited": false,
"createdAt": "2025-10-18T20:10:23.894Z",
"updatedAt": "2025-10-18T20:10:23.894Z"
}