Message #1718
· 12/10/2025
Adduco videlicet aveho. Canto defluo repellat animus theatrum varietas distinctio argumentum spargo aperiam.
Overview
messages / #1718
Adduco videlicet aveho. Canto defluo repellat animus theatrum varietas distinctio argumentum spargo aperiam.
Message #1718
12/10/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/messages/1718" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/messages/1718" ); 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/1718"
);
const message = (await res.json()) as Message; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/messages/1718"
)
message = res.json() Response
{
"id": 1718,
"conversationId": 98,
"userId": 32,
"body": "Adduco videlicet aveho. Canto defluo repellat animus theatrum varietas distinctio argumentum spargo aperiam.",
"isEdited": false,
"createdAt": "2025-12-10T05:18:35.389Z",
"updatedAt": "2025-12-10T05:18:35.389Z"
}