Message #1950
· 12/31/2025
Cimentarius capillus videlicet debeo ars subseco super. Statim cohaero teneo minima aegre.
Overview
messages / #1950
Cimentarius capillus videlicet debeo ars subseco super. Statim cohaero teneo minima aegre.
Message #1950
12/31/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/messages/1950" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/messages/1950" ); 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/1950"
);
const message = (await res.json()) as Message; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/messages/1950"
)
message = res.json() Response
{
"id": 1950,
"conversationId": 107,
"userId": 209,
"body": "Cimentarius capillus videlicet debeo ars subseco super. Statim cohaero teneo minima aegre.",
"isEdited": false,
"createdAt": "2025-12-31T18:11:31.467Z",
"updatedAt": "2025-12-31T18:11:31.467Z"
}