Message #2920
· 10/5/2025
Comminor vobis aequus tot appello error vivo deficio.
Overview
messages / #2920
Comminor vobis aequus tot appello error vivo deficio.
Message #2920
10/5/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/messages/2920" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/messages/2920" ); 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/2920"
);
const message = (await res.json()) as Message; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/messages/2920"
)
message = res.json() Response
{
"id": 2920,
"conversationId": 160,
"userId": 143,
"body": "Comminor vobis aequus tot appello error vivo deficio.",
"isEdited": true,
"createdAt": "2025-10-05T06:02:32.755Z",
"updatedAt": "2025-12-31T07:39:47.440Z"
}