Message #2797
· 8/6/2025
Triduana sustineo reprehenderit carus vorago inflammatio verecundia aveho cognatus. Perspiciatis aureus xiphias.
Overview
messages / #2797
Triduana sustineo reprehenderit carus vorago inflammatio verecundia aveho cognatus. Perspiciatis aureus xiphias.
Message #2797
8/6/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/messages/2797" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/messages/2797" ); 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/2797"
);
const message = (await res.json()) as Message; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/messages/2797"
)
message = res.json() Response
{
"id": 2797,
"conversationId": 153,
"userId": 208,
"body": "Triduana sustineo reprehenderit carus vorago inflammatio verecundia aveho cognatus. Perspiciatis aureus xiphias.",
"isEdited": true,
"createdAt": "2025-08-06T11:24:23.464Z",
"updatedAt": "2025-08-10T22:13:13.968Z"
}