Message #3041
· 12/18/2025
Sollicito stella tristis. Audio adeo cupiditate.
Overview
messages / #3041
Sollicito stella tristis. Audio adeo cupiditate.
Message #3041
12/18/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/messages/3041" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/messages/3041" ); 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/3041"
);
const message = (await res.json()) as Message; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/messages/3041"
)
message = res.json() Response
{
"id": 3041,
"conversationId": 167,
"userId": 178,
"body": "Sollicito stella tristis. Audio adeo cupiditate.",
"isEdited": false,
"createdAt": "2025-12-18T02:06:11.620Z",
"updatedAt": "2025-12-18T02:06:11.620Z"
}