Message #2239
· 7/30/2025
Solio audio cervus aetas vobis canonicus sol. Voluntarius carbo comitatus accommodo.
Overview
messages / #2239
Solio audio cervus aetas vobis canonicus sol. Voluntarius carbo comitatus accommodo.
Message #2239
7/30/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/messages/2239" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/messages/2239" ); 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/2239"
);
const message = (await res.json()) as Message; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/messages/2239"
)
message = res.json() Response
{
"id": 2239,
"conversationId": 123,
"userId": 210,
"body": "Solio audio cervus aetas vobis canonicus sol. Voluntarius carbo comitatus accommodo.",
"isEdited": false,
"createdAt": "2025-07-30T13:19:53.171Z",
"updatedAt": "2025-07-30T13:19:53.171Z"
}