Message #865
· 10/14/2025
Amplexus degero degero abbas alo civitas comminor suspendo turbo. Uredo arbitro tribuo thalassinus.
Overview
messages / #865
Amplexus degero degero abbas alo civitas comminor suspendo turbo. Uredo arbitro tribuo thalassinus.
Message #865
10/14/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/messages/865" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/messages/865" ); 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/865"
);
const message = (await res.json()) as Message; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/messages/865"
)
message = res.json() Response
{
"id": 865,
"conversationId": 47,
"userId": 50,
"body": "Amplexus degero degero abbas alo civitas comminor suspendo turbo. Uredo arbitro tribuo thalassinus.",
"isEdited": false,
"createdAt": "2025-10-14T10:18:23.912Z",
"updatedAt": "2025-10-14T10:18:23.912Z"
}