Message #330
· 8/14/2025
Tergeo corrumpo aro capillus canonicus auctus.
Overview
messages / #330
Tergeo corrumpo aro capillus canonicus auctus.
Message #330
8/14/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/messages/330" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/messages/330" ); 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/330"
);
const message = (await res.json()) as Message; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/messages/330"
)
message = res.json() Response
{
"id": 330,
"conversationId": 20,
"userId": 226,
"body": "Tergeo corrumpo aro capillus canonicus auctus.",
"isEdited": false,
"createdAt": "2025-08-14T23:08:45.565Z",
"updatedAt": "2025-08-14T23:08:45.565Z"
}