Message #160
· 12/25/2025
Cauda bonus aperio. Thesis provident summa desino caecus thermae.
Overview
messages / #160
Cauda bonus aperio. Thesis provident summa desino caecus thermae.
Message #160
12/25/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/messages/160" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/messages/160" ); 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/160"
);
const message = (await res.json()) as Message; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/messages/160"
)
message = res.json() Response
{
"id": 160,
"conversationId": 10,
"userId": 228,
"body": "Cauda bonus aperio. Thesis provident summa desino caecus thermae.",
"isEdited": false,
"createdAt": "2025-12-25T21:31:49.118Z",
"updatedAt": "2025-12-25T21:31:49.118Z"
}